1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
| <ResourceDictionary
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Style x:Key="TextBoxStyle" TargetType="{x:Type TextBox}">
<Setter Property="FontFamily" Value="Trebuchet" />
<Setter Property="FontSize" Value="12" />
</Style>
<Style x:Key="BackGroundPage" TargetType="{x:Type Page}">
<Setter Property="Page.Background" Value="Blue" />
</Style>
<Style x:Key="BackGroundWindow" TargetType="{x:Type Window}">
<Setter Property="Window.Background" Value="#A4B4AB"></Setter>
</Style>
</ResourceDictionary> |