forked from Roflin/gamenight
14 lines
468 B
XML
14 lines
468 B
XML
<ResourceDictionary
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
|
|
|
<Style TargetType="TextBox" BasedOn="{StaticResource FilledTextBoxStyle}">
|
|
<Setter Property="Margin" Value="5,10"/>
|
|
</Style>
|
|
|
|
<Style TargetType="PasswordBox" BasedOn="{StaticResource FilledPasswordBoxStyle}">
|
|
<Setter Property="Margin" Value="5,10"/>
|
|
</Style>
|
|
|
|
</ResourceDictionary>
|