Dictionary1.xaml 1.0 KB

12345678910111213141516171819202122232425262728293031
  1. <ResourceDictionary
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:local="clr-namespace:RegAuth">
  5. <Style TargetType="Button">
  6. <Setter Property="Margin" Value="5"/>
  7. </Style>
  8. <Style TargetType="TextBox">
  9. <Setter Property="VerticalContentAlignment" Value="Center"/>
  10. <Setter Property="HorizontalContentAlignment" Value="Center"/>
  11. <Setter Property="Margin" Value="5"/>
  12. </Style>
  13. <Style TargetType="PasswordBox">
  14. <Setter Property="VerticalContentAlignment" Value="Center"/>
  15. <Setter Property="HorizontalContentAlignment" Value="Center"/>
  16. <Setter Property="Margin" Value="5"/>
  17. </Style>
  18. <Style TargetType="TextBlock">
  19. <Setter Property="VerticalAlignment" Value="Center"/>
  20. <Setter Property="HorizontalAlignment" Value="Center"/>
  21. <Setter Property="Margin" Value="4"/>
  22. </Style>
  23. </ResourceDictionary>