| <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> | |