终端一体化运控平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

24 regels
1.3 KiB

  1. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  2. <Style x:Key="TitleBarStyle" TargetType="Button">
  3. <Setter Property="Foreground" Value="#5500c2f4" />
  4. <Setter Property="FontSize" Value="24" />
  5. <Setter Property="FontFamily" Value="../Fonts/#iconfont" />
  6. <Setter Property="Template">
  7. <Setter.Value>
  8. <ControlTemplate TargetType="Button">
  9. <Border Name="TitleBarBr" Background="Transparent">
  10. <ContentPresenter
  11. Margin="{TemplateBinding Margin}"
  12. HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}"
  13. VerticalAlignment="{TemplateBinding VerticalContentAlignment}" />
  14. </Border>
  15. <ControlTemplate.Triggers>
  16. <Trigger Property="IsMouseOver" Value="true">
  17. <Setter TargetName="TitleBarBr" Property="Background" Value="#33ffffff" />
  18. </Trigger>
  19. </ControlTemplate.Triggers>
  20. </ControlTemplate>
  21. </Setter.Value>
  22. </Setter>
  23. </Style>
  24. </ResourceDictionary>