File size: 934 Bytes
fab29d7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<Button x:Class="VersOne.Epub.WpfDemo.Controls.NavigationHeader"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:controls="clr-namespace:VersOne.Epub.WpfDemo.Controls">
    <Button.Template>
        <ControlTemplate>
            <Border Padding="4">
                <controls:TextBlockWithTooltip x:Name="textBlock" Text="{Binding Title}" Style="{StaticResource ptSansTextBlockStyle}"
                                               FontWeight="Bold" TextTrimming="CharacterEllipsis" />
            </Border>
            <ControlTemplate.Triggers>
                <Trigger Property="IsMouseOver" Value="True">
                    <Setter TargetName="textBlock" Property="Foreground" Value="#007BD3" />
                </Trigger>
            </ControlTemplate.Triggers>
        </ControlTemplate>
    </Button.Template>
</Button>