TooltipStyle.xaml 1.1 KB

123456789101112131415161718192021
  1. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  3. <Style TargetType="ToolTip">
  4. <Setter Property="SnapsToDevicePixels" Value="True" />
  5. <Setter Property="UseLayoutRounding" Value="True" />
  6. <Setter Property="Background" Value="Black" />
  7. <Setter Property="Template">
  8. <Setter.Value>
  9. <ControlTemplate TargetType="ToolTip">
  10. <Border Background="{TemplateBinding Background}"
  11. BorderBrush="{TemplateBinding BorderBrush}"
  12. BorderThickness="{TemplateBinding BorderThickness}"
  13. SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}"
  14. UseLayoutRounding="{TemplateBinding UseLayoutRounding}">
  15. <ContentPresenter />
  16. </Border>
  17. </ControlTemplate>
  18. </Setter.Value>
  19. </Setter>
  20. </Style>
  21. </ResourceDictionary>