44 lines
1.3 KiB
XML
44 lines
1.3 KiB
XML
<Page
|
|
x:Class="WPFluent.Gallery.Views.Pages.Samples.SamplePage2"
|
|
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:local="clr-namespace:WPFluent.Gallery.Views.Pages.Samples"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
Title="SamplePage2"
|
|
d:DesignHeight="450"
|
|
d:DesignWidth="800"
|
|
mc:Ignorable="d">
|
|
|
|
<Grid>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="*" />
|
|
<ColumnDefinition Width="*" />
|
|
</Grid.ColumnDefinitions>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="*" />
|
|
<RowDefinition Height="*" />
|
|
</Grid.RowDefinitions>
|
|
|
|
<Border
|
|
Grid.Row="0"
|
|
Grid.RowSpan="2"
|
|
Grid.Column="1"
|
|
Margin="8"
|
|
Background="Gray"
|
|
CornerRadius="8" />
|
|
<Border
|
|
Grid.Row="0"
|
|
Grid.Column="0"
|
|
Margin="8"
|
|
Background="Aquamarine"
|
|
CornerRadius="8" />
|
|
<Border
|
|
Grid.Row="1"
|
|
Grid.Column="0"
|
|
Margin="8"
|
|
Background="DarkOrange"
|
|
CornerRadius="8" />
|
|
</Grid>
|
|
</Page>
|