Files
laatzen/Common/Ui/Common.GUI/Controls/MainLayout.xaml
T

13 lines
501 B
XML

<Grid x:Class="Common.GUI.Controls.MainLayout"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:Controls="clr-namespace:Common.GUI.Controls"
Background="{DynamicResource md_theme_background}">
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="*" />
</Grid.RowDefinitions>
<Controls:MainMenu Grid.Row="0" />
<Grid Grid.Row="1" />
</Grid>