-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMainWindow.xaml
More file actions
14 lines (14 loc) · 794 Bytes
/
MainWindow.xaml
File metadata and controls
14 lines (14 loc) · 794 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<Window x:Class="ProBizERP.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:views="clr-namespace:ProBizERP.Views"
Title="ProBiz ERP" Height="500" Width="800">
<DockPanel>
<StackPanel DockPanel.Dock="Top" Orientation="Horizontal" Background="Gray">
<Button Content="Inventory" Name="InventoryBtn" Width="120" Margin="5" Click="InventoryBtn_Click"/>
<Button Content="Sales" Name="SalesBtn" Width="120" Margin="5" Click="SalesBtn_Click"/>
<Button Content="Reports" Name="ReportsBtn" Width="120" Margin="5" Click="ReportsBtn_Click"/>
</StackPanel>
<ContentControl Name="MainContent"/>
</DockPanel>
</Window>