Skip to content

Commit 0aa0fe4

Browse files
authored
Update
1 parent 23da6ef commit 0aa0fe4

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

MainWindow.xaml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<Window x:Class="ProBizERP.MainWindow"
2+
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3+
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4+
xmlns:views="clr-namespace:ProBizERP.Views"
5+
Title="ProBiz ERP" Height="500" Width="800">
6+
<DockPanel>
7+
<StackPanel DockPanel.Dock="Top" Orientation="Horizontal" Background="Gray">
8+
<Button Content="Inventory" Name="InventoryBtn" Width="120" Margin="5" Click="InventoryBtn_Click"/>
9+
<Button Content="Sales" Name="SalesBtn" Width="120" Margin="5" Click="SalesBtn_Click"/>
10+
<Button Content="Reports" Name="ReportsBtn" Width="120" Margin="5" Click="ReportsBtn_Click"/>
11+
</StackPanel>
12+
<ContentControl Name="MainContent"/>
13+
</DockPanel>
14+
</Window>

0 commit comments

Comments
 (0)