Explorar el Código

Changed parameter name

Kenric Nugteren hace 4 meses
padre
commit
d80bf6c3be
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      inabox.wpf/DynamicGrid/Controls/DynamicContentDialog.xaml.cs

+ 2 - 2
inabox.wpf/DynamicGrid/Controls/DynamicContentDialog.xaml.cs

@@ -19,10 +19,10 @@ public partial class DynamicContentDialog : Window
         set => SetValue(CanSaveProperty, value);
         set => SetValue(CanSaveProperty, value);
     }
     }
 
 
-    public DynamicContentDialog(FrameworkElement element, bool buttonsvisible = true)
+    public DynamicContentDialog(FrameworkElement element, bool buttonsVisible = true)
     {
     {
         InitializeComponent();
         InitializeComponent();
-        ButtonsVisible = buttonsvisible;
+        ButtonsVisible = buttonsVisible;
         Presenter.Content = element;
         Presenter.Content = element;
     }
     }