Forms.xaml 740 B

1234567891011121314151617181920
  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="FormContainer" TargetType="StackPanel">
  4. <Setter Property="Margin" Value="32,0"/>
  5. <Setter Property="MaxWidth" Value="1024"/>
  6. </Style>
  7. <Style x:Key="FormBody" TargetType="Grid">
  8. <Setter Property="Margin" Value="0"/>
  9. </Style>
  10. <Style x:Key="ButtonPanel" TargetType="StackPanel">
  11. <Setter Property="Orientation" Value="Horizontal"/>
  12. <Setter Property="Margin" Value="0,4"/>
  13. </Style>
  14. <Style TargetType="Page">
  15. <Setter Property="Background" Value="White"/>
  16. </Style>
  17. </ResourceDictionary>