StyletTestingGround/DynamicMenu/Pages/ShellView.xaml

18 lines
828 B
XML

<Window x:Class="DynamicMenu.Pages.ShellView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:s="https://github.com/canton7/Stylet"
xmlns:local="clr-namespace:DynamicMenu.Pages"
mc:Ignorable="d"
d:DataContext="{d:DesignInstance local:ShellViewModel}"
Title="Stylet Dynamic Menu" Height="600" Width="1200">
<DockPanel>
<StatusBar DockPanel.Dock="Bottom">
<StatusBarItem Content="{Binding StatusMessage1}" />
</StatusBar>
<ContentControl s:View.Model="{Binding ActiveItem}" />
</DockPanel>
</Window>