13 lines
644 B
XML
13 lines
644 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>
|
|
</Menu>
|