Retail_manager/RMWPFUserInterface/Views/ShellView.xaml

23 lines
901 B
Plaintext
Raw Normal View History

<Window x:Class="RMWPFUserInterface.Views.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:local="clr-namespace:RMWPFUserInterface.Views"
mc:Ignorable="d"
Title="ShellView" Height="600" Width="1000">
2022-07-08 16:27:24 +02:00
<DockPanel>
<Menu DockPanel.Dock="Top" FontSize="18">
<MenuItem Header="_File">
</MenuItem>
<MenuItem Header="_Account">
<MenuItem x:Name="LoginScreen" Header="_Login" />
</MenuItem>
</Menu>
<Grid>
<ContentControl x:Name="ActiveItem" Margin="20 5 20 20" />
2022-07-08 16:27:24 +02:00
</Grid>
</DockPanel>
</Window>