25 lines
1.1 KiB
XML
25 lines
1.1 KiB
XML
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
|
<Style x:Key="InfoTipBorderStyle" TargetType="Border">
|
|
<Setter Property="Height" Value="14"/>
|
|
<Setter Property="Width" Value="14"/>
|
|
<Setter Property="BorderBrush" Value="Purple"/>
|
|
<Setter Property="BorderThickness" Value="1"/>
|
|
<Setter Property="CornerRadius" Value="8"/>
|
|
<Setter Property="Margin" Value="0,0,10,0"/>
|
|
<Setter Property="Cursor" Value="Hand"/>
|
|
<Setter Property="Background" Value="#05808080"/>
|
|
<Setter Property="Child">
|
|
<Setter.Value>
|
|
<Label Content="?" FontSize="8" Padding="0"
|
|
HorizontalAlignment="Center" VerticalAlignment="Center"
|
|
FontWeight="Bold" Foreground="Purple"/>
|
|
</Setter.Value>
|
|
</Setter>
|
|
<Style.Triggers>
|
|
<Trigger Property="IsMouseOver" Value="True">
|
|
<Setter Property="Background" Value="#0B5B06DE"/>
|
|
</Trigger>
|
|
</Style.Triggers>
|
|
</Style>
|
|
</ResourceDictionary> |