Cards.xaml 690 B

123456789101112131415161718
  1. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  3. <Style x:Key="Card" TargetType="Border">
  4. <Setter Property="Margin" Value="8"/>
  5. <Setter Property="BorderBrush" Value="Black"/>
  6. <Setter Property="BorderThickness" Value="1"/>
  7. </Style>
  8. <Style x:Key="CardInner" TargetType="StackPanel">
  9. <Setter Property="Orientation" Value="Vertical"/>
  10. <Setter Property="Margin" Value="8"/>
  11. </Style>
  12. <Style x:Key="CardButton" TargetType="Button">
  13. <Setter Property="Margin" Value="0,4"/>
  14. </Style>
  15. </ResourceDictionary>