11 lines
674 B
XML
11 lines
674 B
XML
<Menu x:Class="Common.GUI.Controls.MainMenu"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
DataContext="{Binding MainMenuVM, Source={StaticResource VMLocator}}">
|
|
<MenuItem Header="Main" Command="{Binding NavigateCommand}" CommandParameter="Pages/MainPage.xaml"/>
|
|
<MenuItem Header="Test" Command="{Binding NavigateCommand}" CommandParameter="Pages/TestPage.xaml"/>
|
|
<MenuItem Header="e-register">
|
|
<MenuItem Header="Manual programming" Command="{Binding NavigateCommand}" CommandParameter="Pages/Eregister/ManualProgrammingPage.xaml" />
|
|
</MenuItem>
|
|
</Menu>
|