49 lines
1.7 KiB
XML
49 lines
1.7 KiB
XML
<UserControl
|
|
x:Class="BeWo.View.Controls.Utils.HelpInfoControl"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
x:Name="root"
|
|
d:DesignHeight="28"
|
|
d:DesignWidth="28"
|
|
mc:Ignorable="d">
|
|
<Button
|
|
x:Name="btn"
|
|
Width="22"
|
|
Height="22"
|
|
Padding="0"
|
|
Click="btn_Click"
|
|
Cursor="Hand"
|
|
FontSize="13"
|
|
FontWeight="Bold"
|
|
ToolTip="{Binding HelpToolTip, ElementName=root}">
|
|
<Button.Template>
|
|
<ControlTemplate TargetType="Button">
|
|
<Grid>
|
|
<Ellipse
|
|
Fill="White"
|
|
Stroke="#FF14549E"
|
|
StrokeThickness="1" />
|
|
<ContentPresenter HorizontalAlignment="Center" VerticalAlignment="Center" />
|
|
</Grid>
|
|
<ControlTemplate.Triggers>
|
|
<Trigger Property="IsMouseOver" Value="True">
|
|
<Setter Property="Opacity" Value="0.75" />
|
|
</Trigger>
|
|
<Trigger Property="IsPressed" Value="True">
|
|
<Setter Property="Opacity" Value="0.6" />
|
|
</Trigger>
|
|
</ControlTemplate.Triggers>
|
|
</ControlTemplate>
|
|
</Button.Template>
|
|
<TextBlock
|
|
HorizontalAlignment="Center"
|
|
VerticalAlignment="Center"
|
|
FontSize="14"
|
|
FontWeight="Bold"
|
|
Foreground="#FF14549E"
|
|
Text="?" />
|
|
</Button>
|
|
</UserControl>
|