Files
oemanxTrader/OemanTrader.WPF/MainWindow.xaml
2022-05-26 15:19:31 +02:00

22 lines
888 B
XML

<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>