Add project files.
This commit is contained in:
21
OemanTrader.WPF/MainWindow.xaml
Normal file
21
OemanTrader.WPF/MainWindow.xaml
Normal file
@ -0,0 +1,21 @@
|
||||
|
||||
<Window x:Class="OemanTrader.WPF.MainWindow"
|
||||
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:OemanTrader.WPF"
|
||||
xmlns:controls="clr-namespace:OemanTrader.WPF.Controls"
|
||||
|
||||
mc:Ignorable="d"
|
||||
Title="Oeman Trader" Height="450" Width="800">
|
||||
<Grid>
|
||||
<Grid.RowDefinitions>
|
||||
<RowDefinition Height="auto" />
|
||||
<RowDefinition Height="*" />
|
||||
</Grid.RowDefinitions>
|
||||
|
||||
<controls:NavigationBar Grid.Row="0" DataContext="{Binding Navigator}"/>
|
||||
<ContentControl Content="{Binding Navigator.CurrentViewModel}" Grid.Row="1" />
|
||||
</Grid>
|
||||
</Window>
|
||||
Reference in New Issue
Block a user