mirror of
https://github.com/jie65535/ChineseChess.git
synced 2024-07-27 18:55:00 +08:00
31 lines
1.2 KiB
XML
31 lines
1.2 KiB
XML
<Page
|
|
x:Class="ChineseChess.GUI.Views.MainPage"
|
|
Style="{DynamicResource MahApps.Styles.Page}"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:properties="clr-namespace:ChineseChess.GUI.Properties"
|
|
mc:Ignorable="d"
|
|
d:DesignHeight="450" d:DesignWidth="800">
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="48" />
|
|
<RowDefinition Height="*" />
|
|
</Grid.RowDefinitions>
|
|
<TextBlock
|
|
Style="{StaticResource PageTitleStyle}"
|
|
Margin="{StaticResource MediumLeftMargin}"
|
|
Text="{x:Static properties:Resources.MainPageTitle}" />
|
|
<Grid
|
|
Grid.Row="1"
|
|
Margin="{StaticResource MediumLeftRightMargin}"
|
|
Background="{DynamicResource MahApps.Brushes.Gray10}">
|
|
<!--
|
|
The Mahapps Gray10 color represents where you should place your content.
|
|
Place your content here.
|
|
-->
|
|
</Grid>
|
|
</Grid>
|
|
</Page>
|