Add remember me button and more

This commit is contained in:
Rene Schwarz
2021-08-05 15:29:27 +02:00
parent 981ad26b1b
commit d25ccd136d
94 changed files with 874 additions and 172 deletions

View File

@@ -33,7 +33,7 @@
</Grid.RowDefinitions>
<Button
Grid.Row="0"
Command="{Binding CreateNewModuleCommand}"
Command="{Binding OpenNewModuleWindowCommand}"
Content="New Module"
Height="50"
Margin="5 10 5 0" Cursor="Hand"
@@ -41,14 +41,14 @@
/>
<Button
Grid.Row="1"
Command="{Binding DeleteModuleCommand}"
Command="{Binding OpenDeleteModuleWindowCommand}"
Content="Remove Module"
Height="50"
Margin="5 10 5 0"
/>
<Button
Grid.Row="2"
Command="{Binding UpdateModuleCommand}"
Command="{Binding OpenUpdateModuleWindowCommand}"
Content="Change Module"
Height="50"
Margin="5 10 5 0" Cursor="Hand"

View File

@@ -18,7 +18,6 @@ namespace Server_Dashboard.Views.DashboardPages {
public partial class MainDashboardPage : UserControl {
public MainDashboardPage() {
InitializeComponent();
DataContext = new DashboardViewModel();
}
}
}