39 lines
1.5 KiB
XML
39 lines
1.5 KiB
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"
|
|
DataContext="{Binding MainLayoutVM, Source={StaticResource VMLocator}}">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto" />
|
|
<RowDefinition Height="*" />
|
|
</Grid.RowDefinitions>
|
|
<Controls:MainMenu Grid.Row="0" />
|
|
<ItemsControl Grid.Row="1"
|
|
HorizontalAlignment="Left"
|
|
VerticalAlignment="Top">
|
|
<ItemsControl.ItemTemplate>
|
|
<DataTemplate>
|
|
|
|
</DataTemplate>
|
|
</ItemsControl.ItemTemplate>
|
|
</ItemsControl>
|
|
<!--<Border Background="Red"
|
|
CornerRadius="4"
|
|
Grid.Row="1"
|
|
HorizontalAlignment="Left"
|
|
Margin="10"
|
|
VerticalAlignment="Bottom">
|
|
<Border.Effect>
|
|
<DropShadowEffect BlurRadius="5" RenderingBias="Quality" ShadowDepth="1" Color="Red" />
|
|
</Border.Effect>
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto" />
|
|
<RowDefinition Height="Auto" />
|
|
</Grid.RowDefinitions>
|
|
<Label Content="Title" Foreground="WhiteSmoke" Grid.Row="0" />
|
|
<Label Content="Message" Foreground="WhiteSmoke" Grid.Row="1" />
|
|
</Grid>
|
|
</Border>-->
|
|
</Grid>
|