Retail_manager/RMWPFUserInterface/Views/ShellView.xaml
s459315 57d2ab60a7 Created Sales View and Database prodecures for displaying items.
Created and binded a View, created logic behind Cart Product Model
2022-07-23 17:09:13 +02:00

23 lines
901 B
XML

<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">
<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" />
</Grid>
</DockPanel>
</Window>