| <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
| <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
| xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"> |
| xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"> |
| |
| |
. | <Style x:Key="ButtonBottomMenu" TargetType="Button"> |
| <Style x:Key="ButtonBottomMenu" TargetType="ButtonEx"> |
| <Setter Property="Background" Value="Transparent" /> |
| <Setter Property="Background" Value="Transparent" /> |
| <Setter Property="FocusVisualStyle" Value="{x:Null}" /> |
| <Setter Property="FocusVisualStyle" Value="{x:Null}" /> |
| <Setter Property="SnapsToDevicePixels" Value="True" /> |
| <Setter Property="SnapsToDevicePixels" Value="True" /> |
| <Setter Property="VerticalAlignment" Value="Center" /> |
| <Setter Property="VerticalAlignment" Value="Center" /> |
. | |
| <Setter Property="Focusable" Value="False" /> |
| <Setter Property="Template"> |
| <Setter Property="Template"> |
| <Setter.Value> |
| <Setter.Value> |
. | <ControlTemplate TargetType="Button"> |
| <ControlTemplate TargetType="ButtonEx"> |
| <Border Background="{TemplateBinding Background}" |
| <Border Background="{TemplateBinding Background}" |
| Margin="20,0,20,0"> |
| Margin="20,0,20,0"> |
. | <TextBlock Style="{DynamicResource TextBlockBaseStyle}" |
| <StackPanel Orientation="Horizontal"> |
| FontFamily="{DynamicResource FontTitilliumWeb}" |
| <ContentControl ContentTemplate="{TemplateBinding InputHint}" |
| x:Name="TextContent"> |
| Height="30" VerticalAlignment="Center" |
| <ContentPresenter /> |
| Margin="0,0,10,0" Focusable="False"/> |
| </TextBlock> |
| <TextBlock Style="{DynamicResource TextBlockBaseStyle}" |
| |
| FontFamily="{DynamicResource FontTitilliumWeb}" |
| |
| VerticalAlignment="Center"> |
| |
| <ContentPresenter /> |
| |
| </TextBlock> |
| |
| </StackPanel> |
| </Border> |
| </Border> |
| </ControlTemplate> |
| </ControlTemplate> |
| </Setter.Value> |
| </Setter.Value> |
| </Setter> |
| </Setter> |
| </Style> |
| </Style> |
| </ResourceDictionary> |
| </ResourceDictionary> |