laatzen/Common/Ui/Common.UI/Controls/MainMenu.xaml
2025-03-26 12:58:09 +01:00

11 lines
580 B
XML

<Menu x:Class="Common.UI.Controls.MainMenu"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:VM="clr-namespace:Common.UI.ViewModels">
<Menu.DataContext>
<VM:MainMenuVM />
</Menu.DataContext>
<MenuItem Header="Prüfungsinitialisierung" Command="{Binding NavigateCommand}" CommandParameter="Pages/EregisterInitialize.xaml" />
<MenuItem Header="Prüfungsabschluss" Command="{Binding NavigateCommand}" CommandParameter="Pages/EregisterFinalize.xaml" />
</Menu>