ListBoxStyle.xaml

12 lines | 497 B Blame History Raw Download
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
                    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
	
	<!--dwg list-->
	
	<Style x:Key="MyLbStyle" TargetType="{x:Type ListBoxItem}">
		<Style.Resources>
			<SolidColorBrush x:Key="{x:Static SystemColors.HighlightBrushKey}" Color="White" />
			<SolidColorBrush x:Key="{x:Static SystemColors.HighlightTextBrushKey}" Color="Black" />
		</Style.Resources>
	</Style>
</ResourceDictionary>