12345678910111213141516171819202122232425262728293031 |
- <ResourceDictionary
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:local="clr-namespace:RegAuth">
-
- <Style TargetType="Button">
- <Setter Property="Margin" Value="5"/>
- </Style>
-
- <Style TargetType="TextBox">
-
- <Setter Property="VerticalContentAlignment" Value="Center"/>
- <Setter Property="HorizontalContentAlignment" Value="Center"/>
- <Setter Property="Margin" Value="5"/>
- </Style>
- <Style TargetType="PasswordBox">
-
- <Setter Property="VerticalContentAlignment" Value="Center"/>
- <Setter Property="HorizontalContentAlignment" Value="Center"/>
- <Setter Property="Margin" Value="5"/>
- </Style>
- <Style TargetType="TextBlock">
-
- <Setter Property="VerticalAlignment" Value="Center"/>
- <Setter Property="HorizontalAlignment" Value="Center"/>
- <Setter Property="Margin" Value="4"/>
- </Style>
- </ResourceDictionary>
|