11 lines
580 B
XML
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>
|