Files
laatzen/Common/Ui/Common.UI/Controls/MainMenu.xaml
T

14 lines
762 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="Eregister">
<MenuItem Header="Inspection Initialization" Command="{Binding NavigateCommand}" CommandParameter="Pages/EregisterInitialize.xaml" />
<MenuItem Header="Inspection Finalization" Command="{Binding NavigateCommand}" CommandParameter="Pages/EregisterFinalize.xaml" />
</MenuItem>
<MenuItem Header="History" Command="{Binding NavigateCommand}" CommandParameter="Pages/Eregister/History.xaml" />
</Menu>