1234567891011121314151617181920212223242526272829303132333435 |
- <ResourceDictionary
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:local="clr-namespace:wpf_listbox">
- <Style
- x:Key="TextBlockStyle"
- TargetType="TextBlock">
- <Setter
- Property="Background"
- Value="Gray" />
- <Setter
- Property="Foreground"
- Value="White" />
- </Style>
- <Style
- x:Key="WindowStyle"
- TargetType="Window">
- <Setter
- Property="Background"
- Value="Gray" />
- </Style>
- <Style
- x:Key="ButtonStyle"
- TargetType="Button">
- <Setter
- Property="Background"
- Value="Gray" />
- <Setter
- Property="Foreground"
- Value="White" />
- <Setter
- Property="BorderBrush"
- Value="White" />
- </Style>
- </ResourceDictionary>
|