mirror of
https://github.com/jie65535/ChineseChess.git
synced 2024-07-27 18:55:00 +08:00
15 lines
570 B
XML
15 lines
570 B
XML
<ResourceDictionary
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:controls="http://metro.mahapps.com/winfx/xaml/controls">
|
|
|
|
<Style
|
|
x:Key="CustomMetroWindow"
|
|
TargetType="{x:Type controls:MetroWindow}"
|
|
BasedOn="{StaticResource {x:Type controls:MetroWindow}}">
|
|
<Setter Property="ShowTitleBar" Value="True" />
|
|
<Setter Property="Height" Value="450" />
|
|
<Setter Property="Width" Value="800" />
|
|
</Style>
|
|
</ResourceDictionary>
|