123456789101112131415161718 |
- <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
-
- <Style x:Key="Card" TargetType="Border">
- <Setter Property="Margin" Value="8"/>
- <Setter Property="BorderBrush" Value="Black"/>
- <Setter Property="BorderThickness" Value="1"/>
- </Style>
- <Style x:Key="CardInner" TargetType="StackPanel">
- <Setter Property="Orientation" Value="Vertical"/>
- <Setter Property="Margin" Value="8"/>
- </Style>
- <Style x:Key="CardButton" TargetType="Button">
- <Setter Property="Margin" Value="0,4"/>
- </Style>
- </ResourceDictionary>
|