<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:local="clr-namespace:FLY.Thick.Base.UI"> <ResourceDictionary.MergedDictionaries> <ResourceDictionary Source="pack://application:,,,/FLY.ControlLibrary;component/Themes/Dictionary_MyStyle.xaml"/> <ResourceDictionary Source="pack://application:,,,/FLY.Thick.Base.UI;component/Converter/Dictionary_MyConv.xaml"/> <ResourceDictionary Source="pack://application:,,,/FLY.Thick.Base.UI;component/Themes/Styles.xaml"/> </ResourceDictionary.MergedDictionaries> <local:IO2BitColorConverter x:Key="io2bitcolorconv"/> <Style TargetType="TextBlock" x:Key="ItemHeaderStyle"> <Setter Property="FontWeight" Value="Bold"/> <Setter Property="FontFamily" Value="YouYuan"/> <Setter Property="FontSize" Value="12"/> <Setter Property="HorizontalAlignment" Value="Left"/> <Setter Property="Foreground" Value="#FF3B3B3B"/> <Setter Property="Margin" Value="5,0"/> </Style> <Style x:Key="IOStyle" TargetType="Rectangle" > <Setter Property="Width" Value="11" /> <Setter Property="Height" Value="12" /> <Setter Property="Margin" Value="1" /> </Style> <Style x:Key="BtnStyle" TargetType="{x:Type Button}" BasedOn="{StaticResource ButtonStyle_empty}"> <Setter Property="Margin" Value="2"/> <Setter Property="Foreground" Value="{StaticResource AccentBaseColorBrush}"/> <Setter Property="Background" Value="{StaticResource WhiteBrush}"/> <Setter Property="Effect"> <Setter.Value> <DropShadowEffect BlurRadius="10" RenderingBias="Quality" Color="Black" Direction="270" ShadowDepth="2" Opacity="0.5" /> </Setter.Value> </Setter> </Style> <Style x:Key="IconStyle" TargetType="{x:Type Control}" > <Setter Property="Margin" Value="6"/> <Setter Property="Height" Value="30"/> <Setter Property="Width" Value="30"/> </Style> </ResourceDictionary>