12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <ResourceDictionary
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
- <!-- Label Style -->
- <SolidColorBrush x:Key="Label_BD" Color="#FF1B1B1B"/>
- <SolidColorBrush x:Key="Label_BG" Color="Transparent"/>
- <SolidColorBrush x:Key="TitleLabel_BD" Color="White"/>
- <Style TargetType="{x:Type Label}">
- <Setter Property="SnapsToDevicePixels" Value="True"/>
- <Setter Property="FontFamily" Value="Segoe" />
- <Setter Property="FontSize" Value="25" />
- <Setter Property="MinHeight" Value="20" />
- <Setter Property="Background" Value="{DynamicResource Label_BG}" />
- <Setter Property="Foreground" Value="{DynamicResource Label_BD}" />
- <Setter Property="AllowDrop" Value="true"/>
- <Setter Property="FocusVisualStyle" Value="{x:Null}"/>
- <Setter Property="ScrollViewer.PanningMode" Value="VerticalFirst"/>
- <Setter Property="Stylus.IsFlicksEnabled" Value="False"/>
- </Style>
- <Style x:Key="Label_Title" TargetType="{x:Type Label}">
- <Setter Property="FontSize" Value="20" />
- <Setter Property="FontFamily" Value="Segoe" />
- <Setter Property="Margin" Value="0,2,2,2"/>
- <Setter Property="Background" Value="#ff402b94" />
- <Setter Property="Foreground" Value="White" />
- </Style>
- <Style x:Key="Label_GridButton" TargetType="{x:Type Label}">
- <Setter Property="SnapsToDevicePixels" Value="True"/>
- <Setter Property="FontSize" Value="16" />
- <Setter Property="FontFamily" Value="Segoe" />
- <Setter Property="Margin" Value="0,2,2,2"/>
- <Setter Property="Background" Value="{DynamicResource Label_BG}" />
- <Setter Property="Foreground" Value="{DynamicResource Label_BD}" />
- <Setter Property="FocusVisualStyle" Value="{x:Null}"/>
- <Setter Property="ScrollViewer.PanningMode" Value="VerticalFirst"/>
- </Style>
- <!-- Label_Top Style -->
- <SolidColorBrush x:Key="Label_Top_BG" Color="#FFC8E8FF"/>
- <SolidColorBrush x:Key="Label_Top_Shadow" Color="#FF1B1B1B"/>
- <SolidColorBrush x:Key="Label_Top_Highlight_Right" Color="White"/>
- <SolidColorBrush x:Key="Label_Top_Highlight_Bottom" Color="#FFD2D2D2"/>
- <SolidColorBrush x:Key="Grid_Foreground" Color="White"/>
- <SolidColorBrush x:Key="Grid_BG" Color="#FF1d41d5"/>
- <Style x:Key="Label_Grid" TargetType="{x:Type Label}">
- <Setter Property="SnapsToDevicePixels" Value="True"/>
- <Setter Property="BorderBrush" Value="#ff727996"/>
- <Setter Property="BorderThickness" Value="2"/>
- <Setter Property="FontSize" Value="25" />
- <Setter Property="Margin" Value="0,1,2,0"/>
- <Setter Property="Background" Value="{DynamicResource Grid_BG}" />
- <Setter Property="Foreground" Value="{DynamicResource Grid_Foreground}" />
- <Setter Property="VerticalContentAlignment" Value="Center"/>
- <Setter Property="FocusVisualStyle" Value="{x:Null}"/>
- <Setter Property="ScrollViewer.PanningMode" Value="VerticalFirst"/>
- </Style>
-
- </ResourceDictionary>
|