26 lines
1.0 KiB
XML
26 lines
1.0 KiB
XML
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:infrastructure="clr-namespace:PettingZoo.Infrastructure">
|
|
<!-- Global styling -->
|
|
<Style x:Key="WindowStyle" TargetType="{x:Type Window}">
|
|
<Setter Property="Background" Value="{DynamicResource {x:Static SystemColors.ControlBrushKey}}"/>
|
|
</Style>
|
|
|
|
<Style TargetType="{x:Type Button}">
|
|
<Setter Property="Padding" Value="8,4"/>
|
|
</Style>
|
|
|
|
<!-- Explicit styling -->
|
|
<Style x:Key="FooterPanel" TargetType="{x:Type Panel}">
|
|
<Setter Property="Margin" Value="0,8,0,0" />
|
|
</Style>
|
|
|
|
<Style x:Key="FooterButton" TargetType="{x:Type Button}" BasedOn="{StaticResource {x:Type Button}}">
|
|
<Setter Property="Margin" Value="8,0,0,0" />
|
|
</Style>
|
|
|
|
|
|
<Style x:Key="Form" TargetType="{x:Type infrastructure:GridLayout}">
|
|
<Setter Property="ChildMargin" Value="4"/>
|
|
</Style>
|
|
</ResourceDictionary> |