Style.xaml 1.0 KB

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