Files
DP44/Common/DTS.Common/Themes/CommonStyles.xaml
2026-04-17 14:55:32 -04:00

1931 lines
122 KiB
XML

<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
x:Class="DTS.Common.CommonStyles"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="brushes.xaml" />
</ResourceDictionary.MergedDictionaries>
<Style x:Key="Gray_DataGridColumnHeaderStyle" TargetType="DataGridColumnHeader">
<Style.Triggers>
<Trigger Property="IsEnabled" Value="False">
<Setter Property="Foreground" Value="Black"/>
</Trigger>
<Trigger Property="IsMouseOver" Value="True">
<Setter Property="Background" Value="#dcdcdc"/>
</Trigger>
</Style.Triggers>
<Setter Property="Background" Value="#dcdcdc"/>
<Setter Property="Foreground" Value="Black"/>
<Setter Property="Padding" Value="10 0" />
</Style>
<Style x:Key="Gray_GridViewColumnHeaderStyle" TargetType="GridViewColumnHeader">
<Style.Triggers>
<Trigger Property="IsEnabled" Value="False">
<Setter Property="Foreground" Value="Black"/>
</Trigger>
<Trigger Property="IsMouseOver" Value="True">
<Setter Property="Background" Value="#dcdcdc"/>
</Trigger>
</Style.Triggers>
<Setter Property="Background" Value="#dcdcdc"/>
<Setter Property="Foreground" Value="Black"/>
<Setter Property="Padding" Value="10 0" />
</Style>
<Style x:Key="TTS_ButtonStyle" TargetType="Button">
<Setter Property="Width" Value="150"/>
<Setter Property="Margin" Value="3,3,3,0"/>
<Setter Property="ToolTipService.ToolTip" Value="" />
<Setter Property="ToolTipService.ShowOnDisabled" Value="True" />
<EventSetter Event="ToolTipOpening" Handler="ToolTipEventHandler" />
</Style>
<Style x:Key="TTS_ComboBoxStyle" TargetType="ComboBox" BasedOn="{StaticResource FlatComboBoxStyle}">
<Setter Property="Height" Value="14"/>
<Setter Property="Margin" Value="0"/>
<Setter Property="Width" Value="90"/>
<Setter Property="FontSize" Value="10"/>
<Setter Property="HorizontalAlignment" Value="Left"/>
</Style>
<Style x:Key="TTS_TextBoxStyle" TargetType="TextBox" >
<Setter Property="FontFamily" Value="Segoe UI"/>
<Setter Property="FontSize" Value="10"/>
<Setter Property="HorizontalAlignment" Value="Left"/>
<Setter Property="ToolTipService.ToolTip" Value="" />
<Setter Property="ToolTipService.ShowOnDisabled" Value="True" />
<EventSetter Event="ToolTipOpening" Handler="ToolTipEventHandler" />
</Style>
<Style x:Key="TTS_TextBlockStyle" TargetType="TextBlock" >
<Setter Property="FontFamily" Value="Segoe UI"/>
<Setter Property="FontSize" Value="10"/>
<Setter Property="HorizontalAlignment" Value="Left"/>
<Setter Property="VerticalAlignment" Value="Center"/>
</Style>
<Style x:Key="TTS_ListViewItemStyle" TargetType="ListViewItem">
<Setter Property="OverridesDefaultStyle" Value="False" />
<Setter Property="BorderBrush" Value="LightGray" />
<Setter Property="BorderThickness" Value="0,0,0,1" />
<Setter Property="HorizontalAlignment" Value="Stretch" />
<Setter Property="HorizontalContentAlignment" Value="Left" />
<Style.Triggers>
<DataTrigger Binding="{Binding Disabled}" Value="True">
<Setter Property="Background" Value="#808080" />
<Setter Property="FontWeight" Value="Bold" />
</DataTrigger>
</Style.Triggers>
</Style>
<Style x:Key="TTS_ListViewItemStyleWithToolTip" TargetType="ListViewItem">
<Setter Property="OverridesDefaultStyle" Value="False" />
<Setter Property="BorderBrush" Value="LightGray" />
<Setter Property="BorderThickness" Value="0,0,0,1" />
<Setter Property="HorizontalAlignment" Value="Stretch" />
<Setter Property="HorizontalContentAlignment" Value="Left" />
<Setter Property="ToolTip">
<Setter.Value>
<UniformGrid Visibility="{Binding TooltipVisibility}">
<TextBlock Text="{Binding TooltipMessage}" />
</UniformGrid>
</Setter.Value>
</Setter>
<Style.Triggers>
<DataTrigger Binding="{Binding Disabled}" Value="True">
<Setter Property="Background" Value="#808080" />
<Setter Property="FontWeight" Value="Bold" />
</DataTrigger>
</Style.Triggers>
</Style>
<Style x:Key="TTS_ListViewItemStyleNoSelection" TargetType="ListViewItem" BasedOn="{StaticResource TTS_ListViewItemStyle}">
<Setter Property="IsHitTestVisible" Value="false" />
</Style>
<Style x:Key="GridViewColumnHeaderStyle" TargetType="GridViewColumnHeader">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="GridViewColumnHeader">
<Border x:Name="Bd" BorderBrush="White" BorderThickness="0,0,1,0"
Background="{TemplateBinding Background}"
Padding="{TemplateBinding Padding}"
SnapsToDevicePixels="true">
<ContentPresenter HorizontalAlignment="Left"/>
</Border>
<ControlTemplate.Triggers>
<Trigger Property="IsEnabled" Value="False">
<Setter Property="Foreground" Value="White"/>
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
<Style x:Key="ListViewItemStyle" TargetType="ListViewItem">
<Setter Property="Template" >
<Setter.Value>
<ControlTemplate TargetType="ListViewItem">
<Border x:Name="Bd" BorderBrush="White" BorderThickness="0,0,0,0"
Background="{TemplateBinding Background}"
Padding="{TemplateBinding Padding}"
SnapsToDevicePixels="true">
<ContentPresenter
HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}"
SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}"
VerticalAlignment="{TemplateBinding VerticalContentAlignment}"/>
</Border>
<ControlTemplate.Triggers>
<Trigger Property="IsEnabled" Value="false">
<Setter Property="Foreground" Value="{DynamicResource {x:Static SystemColors.GrayTextBrushKey}}"/>
</Trigger>
<Trigger Property="ItemsControl.AlternationIndex" Value="0">
<Setter Property="Background" Value="{StaticResource Brush_PageContentBackgroundMouseOver}" />
</Trigger>
<Trigger Property="ItemsControl.AlternationIndex" Value="1">
<Setter Property="Background" Value="{StaticResource Brush_PageContentForegroundPressed}" />
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>
</Setter.Value>
</Setter>
<Style.Triggers>
<MultiTrigger>
<MultiTrigger.Conditions>
<Condition Property="IsSelected" Value="True" />
<Condition Property="Selector.IsSelectionActive" Value="true" />
</MultiTrigger.Conditions>
<MultiTrigger.Setters>
<Setter Property="Background" Value="{StaticResource Brush_ApplicationSelectedBackground}" />
<Setter Property="Foreground" Value="White"/>
</MultiTrigger.Setters>
</MultiTrigger>
<MultiTrigger>
<MultiTrigger.Conditions>
<Condition Property="IsSelected" Value="True" />
<Condition Property="Selector.IsSelectionActive" Value="false" />
</MultiTrigger.Conditions>
<MultiTrigger.Setters>
<Setter Property="Background" Value="{StaticResource Brush_ApplicationSelectedBackground}" />
<Setter Property="Foreground" Value="White"/>
</MultiTrigger.Setters>
</MultiTrigger>
</Style.Triggers>
</Style>
<!--________________________________________________________________________________________________________________________________________________-->
<Style x:Key="BasicTextStyle" TargetType="TextBlock">
<Setter Property="Foreground" Value="#DEFFFFFF"/>
<Setter Property="FontSize" Value="14"/>
<Setter Property="FontFamily" Value="Segoe UI"/>
<Setter Property="TextTrimming" Value="WordEllipsis"/>
<Setter Property="TextWrapping" Value="Wrap"/>
<Setter Property="Typography.StylisticSet20" Value="True"/>
<Setter Property="Typography.DiscretionaryLigatures" Value="True"/>
<Setter Property="Typography.CaseSensitiveForms" Value="True"/>
</Style>
<Style x:Key="BaselineTextStyle" TargetType="TextBlock" BasedOn="{StaticResource BasicTextStyle}">
<Setter Property="LineHeight" Value="20"/>
<Setter Property="LineStackingStrategy" Value="BlockLineHeight"/>
<!-- Properly align text along its baseline -->
<Setter Property="RenderTransform">
<Setter.Value>
<TranslateTransform X="-1" Y="4"/>
</Setter.Value>
</Setter>
</Style>
<Style x:Key="BaselineTextStyle2" TargetType="TextBlock" BasedOn="{StaticResource BasicTextStyle}">
<Setter Property="Foreground" Value="Black"/>
<Setter Property="LineHeight" Value="20"/>
<Setter Property="LineStackingStrategy" Value="BlockLineHeight"/>
<Setter Property="FontSize" Value="12"/>
<Setter Property="Margin" Value="5"/>
</Style>
<Style x:Key="BaselineTextStyle3" TargetType="TextBlock" BasedOn="{StaticResource BasicTextStyle}">
<Setter Property="Foreground" Value="#4d4d4d"/>
<Setter Property="LineHeight" Value="20"/>
<Setter Property="LineStackingStrategy" Value="BlockLineHeight"/>
<Setter Property="FontSize" Value="12"/>
<Setter Property="Margin" Value="5"/>
</Style>
<Style x:Key="BaselineTextStyle4" TargetType="TextBlock" BasedOn="{StaticResource BasicTextStyle}">
<Setter Property="Foreground" Value="Black"/>
<Setter Property="LineHeight" Value="28"/>
<Setter Property="LineStackingStrategy" Value="BlockLineHeight"/>
<Setter Property="FontSize" Value="22"/>
<Setter Property="Margin" Value="5"/>
</Style>
<Style x:Key="BaselineTextStyle5" TargetType="TextBlock" BasedOn="{StaticResource BasicTextStyle}">
<Setter Property="Foreground" Value="#4d4d4d"/>
<!--<Setter Property="LineHeight" Value="20"/>-->
<Setter Property="LineStackingStrategy" Value="BlockLineHeight"/>
<Setter Property="FontSize" Value="12"/>
<Setter Property="Margin" Value="5,0,5,0" />
</Style>
<Style x:Key="txtStyle_PageSectionHeader" TargetType="TextBlock" BasedOn="{StaticResource BasicTextStyle}">
<Setter Property="Foreground" Value="Black"/>
<!--<Setter Property="LineHeight" Value="28"/>-->
<Setter Property="LineStackingStrategy" Value="BlockLineHeight"/>
<Setter Property="FontSize" Value="20"/>
<Setter Property="Margin" Value="5,0,5,0" />
</Style>
<Style TargetType="{x:Type TextBlock}" x:Key="WrappingStyle">
<Setter Property="TextWrapping" Value="Wrap"/>
</Style>
<Style x:Key="SubheaderTextStyle" TargetType="TextBlock" BasedOn="{StaticResource BaselineTextStyle}">
<Setter Property="FontSize" Value="18"/>
<Setter Property="FontFamily" Value="Segoe UI Light"/>
</Style>
<Style x:Key="PageSubheaderTextStyle" TargetType="TextBlock" BasedOn="{StaticResource SubheaderTextStyle}">
<Setter Property="TextWrapping" Value="NoWrap"/>
<Setter Property="VerticalAlignment" Value="Bottom"/>
<Setter Property="Margin" Value="0,0,0,40"/>
</Style>
<Style x:Key="ReviewHeaderTextStyle" TargetType="TextBlock" BasedOn="{StaticResource PageSubheaderTextStyle}">
<Setter Property="FontSize" Value="12"/>
<Setter Property="Margin" Value="0,0,0,0" />
<Setter Property="VerticalAlignment" Value="Center" />
<Setter Property="Foreground" Value="Black" />
</Style>
<Style x:Key="PageContentTextStyle" TargetType="TextBlock">
<Setter Property="FontFamily" Value="Segoe UI"/>
<Setter Property="Margin" Value="10,2,10,2" />
<Setter Property="VerticalAlignment" Value="Center" />
<Setter Property="FontSize" Value="12" />
<Setter Property="Foreground" Value="Black"/>
</Style>
<Style x:Key="PageContentListViewTemplateTextStyle" TargetType="TextBlock" BasedOn="{StaticResource PageContentTextStyle}">
<Setter Property="FontSize" Value="11" />
<Setter Property="Margin" Value="5" />
<Setter Property="TextWrapping" Value="Wrap"/>
</Style>
<Style x:Key="PageContentListViewTemplateDescriptionTextStyle" TargetType="TextBlock" BasedOn="{StaticResource PageContentTextStyle}">
<Setter Property="FontSize" Value="11" />
<Setter Property="FontStyle" Value="Italic" />
<Setter Property="TextWrapping" Value="Wrap"/>
</Style>
<Style x:Key="PageContentListViewTemplateTitleTextStyle" TargetType="TextBlock" BasedOn="{StaticResource PageContentTextStyle}">
<Setter Property="FontSize" Value="15" />
<Setter Property="TextWrapping" Value="Wrap"/>
</Style>
<Style x:Key="PageContentTextBoxStyle" TargetType="TextBox">
<Setter Property="Background" Value="{Binding Background}"/>
<Setter Property="VerticalAlignment" Value="Stretch" />
<Setter Property="Margin" Value="5,2,5,2" />
<Setter Property="Height" Value="22" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type TextBoxBase}">
<Grid Name="Border" Background="{TemplateBinding Background}">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*"/>
<ColumnDefinition Width="Auto"/>
</Grid.ColumnDefinitions>
<Border Grid.Column="0"
Padding="0"
BorderBrush="{StaticResource SolidBorderBrush}"
BorderThickness="0" >
<ScrollViewer Margin="0" x:Name="PART_ContentHost"/>
</Border>
<Path
x:Name="Lock"
Grid.Column="1"
Data="M5.5,3.5730734 C5.152669,3.5730734 4.8814287,3.5981388 4.6862793,3.6482687 C4.4911294,3.6983995 4.3452148,3.780756 4.2485352,3.895339 C4.1518555,4.0099225 4.0918779,4.1612082 4.0686035,4.3491964 C4.0453286,4.5371847 4.0336914,4.7672467 4.0336914,5.039382 L4.0336914,5.8826437 L6.9663086,5.8826437 L6.9663086,5.039382 C6.9663086,4.7672467 6.9555664,4.5371847 6.934082,4.3491964 C6.9125977,4.1612082 6.8544106,4.0099225 6.7595215,3.895339 C6.6646318,3.780756 6.5187173,3.6983995 6.3217773,3.6482687 C6.1248369,3.5981388 5.8509111,3.5730734 5.5,3.5730734 z M5.5,2.461257 C6.0514321,2.461257 6.4945474,2.5266056 6.8293457,2.6573019 C7.1641436,2.7879992 7.4219561,2.9688253 7.6027832,3.1997824 C7.7836099,3.4307399 7.9035645,3.7037706 7.9626465,4.0188742 C8.0217285,4.3339787 8.0512695,4.6741476 8.0512695,5.039382 L8.0512695,5.9094992 C8.1515293,5.9094992 8.248209,5.9291935 8.3413086,5.9685812 C8.4344072,6.0079694 8.5158691,6.0607853 8.5856934,6.1270285 C8.6555176,6.1932721 8.7110186,6.2702579 8.7521973,6.3579855 C8.793375,6.4457135 8.8139648,6.5379171 8.8139648,6.6345968 L8.8139648,10.67903 C8.8139648,10.782871 8.795166,10.879551 8.7575684,10.969069 C8.7199707,11.058588 8.6671543,11.138259 8.5991211,11.208083 C8.5310869,11.277907 8.4523106,11.332514 8.362793,11.371902 C8.2732744,11.411289 8.1783848,11.430984 8.078125,11.430984 L2.9379883,11.430984 C2.834147,11.430984 2.7365723,11.411289 2.6452637,11.371902 C2.5539551,11.332514 2.4742837,11.277907 2.40625,11.208083 C2.3382161,11.138259 2.2845051,11.058588 2.2451172,10.969069 C2.205729,10.879551 2.1860352,10.782871 2.1860352,10.67903 L2.1860352,6.6345968 C2.1860352,6.5379171 2.2066243,6.4457135 2.2478027,6.3579855 C2.288981,6.2702579 2.3444824,6.1932721 2.4143066,6.1270285 C2.4841309,6.0607853 2.563802,6.0079694 2.6533203,5.9685812 C2.7428384,5.9291935 2.8377278,5.9094992 2.9379883,5.9094992 L2.9379883,5.039382 C2.9379883,4.6741476 2.9684243,4.3339787 3.0292969,4.0188742 C3.0901692,3.7037706 3.2128091,3.4307399 3.3972168,3.1997824 C3.581624,2.9688253 3.8412271,2.7879992 4.1760254,2.6573019 C4.5108232,2.5266056 4.9521484,2.461257 5.5,2.461257 z"
HorizontalAlignment="Center"
Height="8.97" Margin="5" Stretch="Fill"
VerticalAlignment="Center"
Fill="{StaticResource Brush_FlatControlDisabledForeground}"
Width="6.628"/>
</Grid>
<ControlTemplate.Triggers>
<Trigger Property="IsEnabled" Value="True">
<Setter TargetName="Lock" Property="Visibility" Value="Collapsed"/>
<Setter TargetName="Border" Property="Background" Value="{StaticResource Brush_FlatControlWindowBackground}"/>
<Setter Property="Foreground" Value="{StaticResource Brush_FlatControlForeground}"/>
</Trigger>
<Trigger Property="IsMouseOver" Value="True">
<Setter TargetName="Lock" Property="Visibility" Value="Collapsed"/>
<Setter TargetName="Border" Property="Background" Value="{StaticResource Brush_FlatControlMouseOverBackground}"/>
<Setter Property="Foreground" Value="{StaticResource Brush_FlatControlMouseOverForeground}"/>
</Trigger>
<Trigger Property="IsEnabled" Value="False">
<Setter TargetName="Lock" Property="Visibility" Value="Visible"/>
<Setter TargetName="Border" Property="Background" Value="{StaticResource Brush_FlatControlDisabledBackground}"/>
<Setter Property="Foreground" Value="{StaticResource Brush_FlatControlDisabledForeground}"/>
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
<Style x:Key="PageContentTextBoxErrorStyle" TargetType="TextBox" BasedOn="{StaticResource PageContentTextBoxStyle}">
<Setter Property="Background" Value="{StaticResource Brush_FlatControlWindowBackground}" />
<Setter Property="VerticalAlignment" Value="Stretch" />
<Setter Property="Margin" Value="5,2,5,2" />
<Setter Property="Height" Value="22" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type TextBoxBase}">
<Border
Name="Border"
Padding="0"
Background="{StaticResource Brush_FlatControlWindowBackground}"
BorderBrush="#FF0000"
BorderThickness="2" >
<ScrollViewer Margin="0" x:Name="PART_ContentHost"/>
</Border>
<ControlTemplate.Triggers>
<Trigger Property="IsMouseOver" Value="True">
<Setter TargetName="Border" Property="Background" Value="{StaticResource Brush_FlatControlMouseOverBackground}"/>
<Setter Property="Foreground" Value="{StaticResource Brush_FlatControlMouseOverForeground}"/>
</Trigger>
<Trigger Property="IsEnabled" Value="False">
<Setter TargetName="Border" Property="Background" Value="{StaticResource Brush_FlatControlDisabledBackground}"/>
<Setter Property="Foreground" Value="{StaticResource Brush_FlatControlDisabledForeground}"/>
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
<Style x:Key="PageContentPasswordBoxStyle" TargetType="PasswordBox">
<Setter Property="Background" Value="{StaticResource Brush_FlatControlWindowBackground}" />
<Setter Property="VerticalAlignment" Value="Center" />
<Setter Property="BorderThickness" Value="0" />
<Setter Property="BorderBrush" Value="Transparent" />
<Setter Property="Margin" Value="5,2,5,2" />
<Setter Property="Height" Value="22" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type PasswordBox}">
<Border
Name="Border"
Padding="0"
Background="{StaticResource Brush_FlatControlWindowBackground}"
BorderBrush="{StaticResource SolidBorderBrush}"
BorderThickness="0" >
<ScrollViewer Margin="0" x:Name="PART_ContentHost"/>
</Border>
<ControlTemplate.Triggers>
<Trigger Property="IsMouseOver" Value="True">
<Setter TargetName="Border" Property="Background" Value="{StaticResource Brush_FlatControlMouseOverBackground}"/>
<Setter Property="Foreground" Value="{StaticResource Brush_FlatControlMouseOverForeground}"/>
</Trigger>
<Trigger Property="IsEnabled" Value="False">
<Setter TargetName="Border" Property="Background" Value="{StaticResource Brush_FlatControlDisabledBackground}"/>
<Setter Property="Foreground" Value="{StaticResource Brush_FlatControlDisabledForeground}"/>
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
<Style x:Key="Button_CircleBack_Light" TargetType="{x:Type Button}">
<Setter Property="MinWidth" Value="0"/>
<Setter Property="Width" Value="48"/>
<Setter Property="Height" Value="48"/>
<Setter Property="Margin" Value="10,0,10,0"/>
<Setter Property="VerticalAlignment" Value="Bottom"/>
<Setter Property="FontFamily" Value="Segoe UI Symbol"/>
<Setter Property="FontWeight" Value="Normal"/>
<Setter Property="FontSize" Value="56"/>
<Setter Property="VerticalAlignment" Value="Center" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type Button}">
<Grid Background="Transparent">
<Viewbox>
<Grid>
<Ellipse x:Name="ellipse" Width="340" Height="340" Canvas.Left="0" Canvas.Top="0" Stretch="Fill" StrokeThickness="15" StrokeLineJoin="Round" Stroke="{StaticResource Brush_Application_NavButton_Light_Ellipse}" />
<Path x:Name="arrowTop" Width="262" Height="198" Canvas.Left="45" Canvas.Top="70"
Stretch="Fill" StrokeThickness="6" StrokeStartLineCap="Round" StrokeEndLineCap="Round"
StrokeLineJoin="Round" Stroke="{StaticResource Brush_Application_NavButton_Light_Foreground}" Fill="{StaticResource Brush_Application_NavButton_Light_Foreground}"
Data="F1 M 48.5143,170L 144.514,73.9999L 195.514,74L 121.515,150L 304.514,150L 304.514,190L 121.514,190L 195.514,266L 144.514,266L 48.5143,170 Z " RenderTransformOrigin="0.5,0.5">
<Path.RenderTransform>
<TransformGroup>
<ScaleTransform ScaleX="0.7" ScaleY="0.7"/>
<SkewTransform/>
<RotateTransform/>
<TranslateTransform/>
</TransformGroup>
</Path.RenderTransform>
</Path>
<Path x:Name="arrow" Width="262" Height="198" Canvas.Left="45" Canvas.Top="70"
Stretch="Fill" StrokeThickness="6" StrokeStartLineCap="Round" StrokeEndLineCap="Round"
StrokeLineJoin="Round" Stroke="{StaticResource Brush_Application_NavButton_Light_Foreground}" Fill="{StaticResource Brush_Application_NavButton_Light_Foreground}"
Data="F1 M 48.5143,170L 144.514,73.9999L 195.514,74L 121.515,150L 304.514,150L 304.514,190L 121.514,190L 195.514,266L 144.514,266L 48.5143,170 Z " RenderTransformOrigin="0.5,0.5">
<Path.RenderTransform>
<TransformGroup>
<ScaleTransform ScaleX="0.7" ScaleY="0.7"/>
<SkewTransform/>
<RotateTransform/>
<TranslateTransform/>
</TransformGroup>
</Path.RenderTransform>
</Path>
</Grid>
</Viewbox>
<ContentPresenter HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}" VerticalAlignment="{TemplateBinding VerticalContentAlignment}" SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}" RecognizesAccessKey="True"/>
</Grid>
<ControlTemplate.Triggers>
<Trigger Property="IsMouseOver" Value="true">
<Setter TargetName="ellipse" Property="Stroke" Value="{StaticResource Brush_Application_NavButton_Light_Ellipse_MouseOver}" />
<Setter TargetName="arrowTop" Property="Stroke" Value="{StaticResource Brush_Application_NavButton_Light_Foreground_MouseOver}" />
<Setter TargetName="arrowTop" Property="Fill" Value="{StaticResource Brush_Application_NavButton_Light_Foreground_MouseOver}" />
<Setter TargetName="arrow" Property="Stroke" Value="{StaticResource Brush_Application_NavButton_Light_Foreground_MouseOver}" />
<Setter TargetName="arrow" Property="Fill" Value="{StaticResource Brush_Application_NavButton_Light_Foreground_MouseOver}" />
</Trigger>
<Trigger Property="IsPressed" Value="true">
<Setter TargetName="ellipse" Property="Stroke" Value="{StaticResource Brush_Application_NavButton_Light_Ellipse_Pressed}" />
<Setter TargetName="arrowTop" Property="Stroke" Value="{StaticResource Brush_Application_NavButton_Light_Foreground_Pressed}" />
<Setter TargetName="arrowTop" Property="Fill" Value="{StaticResource Brush_Application_NavButton_Light_Foreground_Pressed}" />
<Setter TargetName="arrow" Property="Stroke" Value="{StaticResource Brush_Application_NavButton_Light_Foreground_Pressed}" />
<Setter TargetName="arrow" Property="Fill" Value="{StaticResource Brush_Application_NavButton_Light_Foreground_Pressed}" />
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
<Style x:Key="Button_CircleNext_Light" TargetType="{x:Type Button}">
<Setter Property="MinWidth" Value="0"/>
<Setter Property="Width" Value="48"/>
<Setter Property="Height" Value="48"/>
<Setter Property="Margin" Value="10,0,10,0"/>
<Setter Property="VerticalAlignment" Value="Bottom"/>
<Setter Property="FontFamily" Value="Segoe UI Symbol"/>
<Setter Property="FontWeight" Value="Normal"/>
<Setter Property="FontSize" Value="56"/>
<Setter Property="VerticalAlignment" Value="Center" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type Button}">
<Grid Background="Transparent">
<Viewbox>
<Grid>
<Ellipse x:Name="ellipse" Width="340" Height="340" Canvas.Left="0" Canvas.Top="0" Stretch="Fill" StrokeThickness="15" StrokeLineJoin="Round" Stroke="{StaticResource Brush_Application_NavButton_Light_Ellipse}" />
<Path x:Name="arrowTop" Width="262" Height="198" Canvas.Left="45" Canvas.Top="70"
Stretch="Fill" StrokeThickness="6" StrokeStartLineCap="Round" StrokeEndLineCap="Round"
StrokeLineJoin="Round" Stroke="{StaticResource Brush_Application_NavButton_Light_Foreground}" Fill="{StaticResource Brush_Application_NavButton_Light_Foreground}"
Data="F1 M 48.5143,170L 144.514,73.9999L 195.514,74L 121.515,150L 304.514,150L 304.514,190L 121.514,190L 195.514,266L 144.514,266L 48.5143,170 Z " RenderTransformOrigin="0.5,0.5">
<Path.RenderTransform>
<TransformGroup>
<ScaleTransform ScaleX="0.7" ScaleY="0.7"/>
<SkewTransform/>
<RotateTransform Angle="180"/>
<TranslateTransform/>
</TransformGroup>
</Path.RenderTransform>
</Path>
<Path x:Name="arrow" Width="262" Height="198" Canvas.Left="45" Canvas.Top="70"
Stretch="Fill" StrokeThickness="6" StrokeStartLineCap="Round" StrokeEndLineCap="Round"
StrokeLineJoin="Round" Stroke="{StaticResource Brush_Application_NavButton_Light_Foreground}" Fill="{StaticResource Brush_Application_NavButton_Light_Foreground}"
Data="F1 M 48.5143,170L 144.514,73.9999L 195.514,74L 121.515,150L 304.514,150L 304.514,190L 121.514,190L 195.514,266L 144.514,266L 48.5143,170 Z " RenderTransformOrigin="0.5,0.5">
<Path.RenderTransform>
<TransformGroup>
<ScaleTransform ScaleX="0.7" ScaleY="0.7"/>
<SkewTransform/>
<RotateTransform Angle="180"/>
<TranslateTransform/>
</TransformGroup>
</Path.RenderTransform>
</Path>
</Grid>
</Viewbox>
<ContentPresenter HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}" VerticalAlignment="{TemplateBinding VerticalContentAlignment}" SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}" RecognizesAccessKey="True"/>
</Grid>
<ControlTemplate.Triggers>
<Trigger Property="IsMouseOver" Value="true">
<Setter TargetName="ellipse" Property="Stroke" Value="{StaticResource Brush_Application_NavButton_Light_Ellipse_MouseOver}" />
<Setter TargetName="arrowTop" Property="Stroke" Value="{StaticResource Brush_Application_NavButton_Light_Foreground_MouseOver}" />
<Setter TargetName="arrowTop" Property="Fill" Value="{StaticResource Brush_Application_NavButton_Light_Foreground_MouseOver}" />
<Setter TargetName="arrow" Property="Stroke" Value="{StaticResource Brush_Application_NavButton_Light_Foreground_MouseOver}" />
<Setter TargetName="arrow" Property="Fill" Value="{StaticResource Brush_Application_NavButton_Light_Foreground_MouseOver}" />
</Trigger>
<Trigger Property="IsPressed" Value="true">
<Setter TargetName="ellipse" Property="Stroke" Value="{StaticResource Brush_Application_NavButton_Light_Ellipse_Pressed}" />
<Setter TargetName="arrowTop" Property="Stroke" Value="{StaticResource Brush_Application_NavButton_Light_Foreground_Pressed}" />
<Setter TargetName="arrowTop" Property="Fill" Value="{StaticResource Brush_Application_NavButton_Light_Foreground_Pressed}" />
<Setter TargetName="arrow" Property="Stroke" Value="{StaticResource Brush_Application_NavButton_Light_Foreground_Pressed}" />
<Setter TargetName="arrow" Property="Fill" Value="{StaticResource Brush_Application_NavButton_Light_Foreground_Pressed}" />
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
<Style x:Key="Button_CircleBack_Dark" TargetType="{x:Type Button}">
<Setter Property="MinWidth" Value="0"/>
<Setter Property="Width" Value="48"/>
<Setter Property="Height" Value="48"/>
<Setter Property="Margin" Value="10,0,10,0"/>
<Setter Property="VerticalAlignment" Value="Bottom"/>
<Setter Property="FontFamily" Value="Segoe UI Symbol"/>
<Setter Property="FontWeight" Value="Normal"/>
<Setter Property="FontSize" Value="56"/>
<Setter Property="VerticalAlignment" Value="Center" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type Button}">
<Grid Background="Transparent">
<Viewbox>
<Grid>
<Ellipse x:Name="ellipse" Width="340" Height="340" Canvas.Left="0" Canvas.Top="0" Stretch="Fill" StrokeThickness="15" StrokeLineJoin="Round" Stroke="{StaticResource Brush_Application_NavButton_Dark_Ellipse}"/>
<Path x:Name="arrowTop" Width="262" Height="198" Canvas.Left="45" Canvas.Top="70"
Stretch="Fill" StrokeThickness="6" StrokeStartLineCap="Round" StrokeEndLineCap="Round"
StrokeLineJoin="Round" Stroke="{StaticResource Brush_Application_NavButton_Dark_Foreground}" Fill="{StaticResource Brush_Application_NavButton_Dark_Foreground}"
Data="F1 M 48.5143,170L 144.514,73.9999L 195.514,74L 121.515,150L 304.514,150L 304.514,190L 121.514,190L 195.514,266L 144.514,266L 48.5143,170 Z " RenderTransformOrigin="0.5,0.5">
<Path.RenderTransform>
<TransformGroup>
<ScaleTransform ScaleX="0.7" ScaleY="0.7"/>
<SkewTransform/>
<RotateTransform/>
<TranslateTransform/>
</TransformGroup>
</Path.RenderTransform>
</Path>
</Grid>
</Viewbox>
<ContentPresenter HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}" VerticalAlignment="{TemplateBinding VerticalContentAlignment}" SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}" RecognizesAccessKey="True"/>
</Grid>
<ControlTemplate.Triggers>
<Trigger Property="IsMouseOver" Value="true">
<Setter TargetName="ellipse" Property="Stroke" Value="{StaticResource Brush_Application_NavButton_Dark_Ellipse_MouseOver}" />
<Setter TargetName="arrowTop" Property="Stroke" Value="{StaticResource Brush_Application_NavButton_Dark_Foreground_MouseOver}" />
<Setter TargetName="arrowTop" Property="Fill" Value="{StaticResource Brush_Application_NavButton_Dark_Foreground_MouseOver}" />
</Trigger>
<Trigger Property="IsPressed" Value="true">
<Setter TargetName="ellipse" Property="Stroke" Value="{StaticResource Brush_Application_NavButton_Dark_Ellipse_Pressed}" />
<Setter TargetName="arrowTop" Property="Stroke" Value="{StaticResource Brush_Application_NavButton_Dark_Foreground_Pressed}" />
<Setter TargetName="arrowTop" Property="Fill" Value="{StaticResource Brush_Application_NavButton_Dark_Foreground_Pressed}" />
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
<Style x:Key="Button_CircleNext_Dark" TargetType="{x:Type Button}">
<Setter Property="MinWidth" Value="0"/>
<Setter Property="Width" Value="48"/>
<Setter Property="Height" Value="48"/>
<Setter Property="Margin" Value="10,0,10,0"/>
<Setter Property="VerticalAlignment" Value="Bottom"/>
<Setter Property="FontFamily" Value="Segoe UI Symbol"/>
<Setter Property="FontWeight" Value="Normal"/>
<Setter Property="FontSize" Value="56"/>
<Setter Property="VerticalAlignment" Value="Center" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type Button}">
<Grid Background="Transparent">
<Viewbox>
<Grid>
<Ellipse x:Name="ellipse" Width="340" Height="340" Canvas.Left="0" Canvas.Top="0" Stretch="Fill" StrokeThickness="15" StrokeLineJoin="Round" Stroke="{StaticResource Brush_Application_NavButton_Dark_Ellipse}"/>
<Path x:Name="arrowTop" Width="262" Height="198" Canvas.Left="45" Canvas.Top="70"
Stretch="Fill" StrokeThickness="6" StrokeStartLineCap="Round" StrokeEndLineCap="Round"
StrokeLineJoin="Round" Stroke="{StaticResource Brush_Application_NavButton_Dark_Foreground}" Fill="{StaticResource Brush_Application_NavButton_Dark_Foreground}"
Data="F1 M 48.5143,170L 144.514,73.9999L 195.514,74L 121.515,150L 304.514,150L 304.514,190L 121.514,190L 195.514,266L 144.514,266L 48.5143,170 Z " RenderTransformOrigin="0.5,0.5">
<Path.RenderTransform>
<TransformGroup>
<ScaleTransform ScaleX="0.7" ScaleY="0.7"/>
<SkewTransform/>
<RotateTransform Angle="180"/>
<TranslateTransform/>
</TransformGroup>
</Path.RenderTransform>
</Path>
</Grid>
</Viewbox>
<ContentPresenter HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}" VerticalAlignment="{TemplateBinding VerticalContentAlignment}" SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}" RecognizesAccessKey="True"/>
</Grid>
<ControlTemplate.Triggers>
<Trigger Property="IsMouseOver" Value="true">
<Setter TargetName="ellipse" Property="Stroke" Value="{StaticResource Brush_Application_NavButton_Dark_Ellipse_MouseOver}" />
<Setter TargetName="arrowTop" Property="Stroke" Value="{StaticResource Brush_Application_NavButton_Dark_Foreground_MouseOver}" />
<Setter TargetName="arrowTop" Property="Fill" Value="{StaticResource Brush_Application_NavButton_Dark_Foreground_MouseOver}" />
</Trigger>
<Trigger Property="IsPressed" Value="true">
<Setter TargetName="ellipse" Property="Stroke" Value="{StaticResource Brush_Application_NavButton_Dark_Ellipse_Pressed}" />
<Setter TargetName="arrowTop" Property="Stroke" Value="{StaticResource Brush_Application_NavButton_Dark_Foreground_Pressed}" />
<Setter TargetName="arrowTop" Property="Fill" Value="{StaticResource Brush_Application_NavButton_Dark_Foreground_Pressed}" />
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
<Style x:Key="Button_CircleClose_Dark" TargetType="{x:Type Button}">
<Setter Property="MinWidth" Value="0"/>
<Setter Property="Width" Value="48"/>
<Setter Property="Height" Value="48"/>
<Setter Property="Margin" Value="10,0,10,0"/>
<Setter Property="VerticalAlignment" Value="Bottom"/>
<Setter Property="FontFamily" Value="Segoe UI Symbol"/>
<Setter Property="FontWeight" Value="Normal"/>
<Setter Property="FontSize" Value="56"/>
<Setter Property="VerticalAlignment" Value="Center" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type Button}">
<Grid Background="Transparent">
<Viewbox>
<Grid>
<Ellipse x:Name="ellipse"
Width="340" Height="340"
Canvas.Left="0" Canvas.Top="0"
Stretch="Fill" StrokeThickness="15"
StrokeLineJoin="Round"
Stroke="{StaticResource Brush_Application_NavButton_Dark_Ellipse}"/>
<TextBlock
x:Name="close_text"
Text="X"
FontFamily="Arial" FontSize="180"
Margin="10,10,0,0"
Foreground="{StaticResource Brush_Application_NavButton_Dark_Foreground}"
HorizontalAlignment="Center"
VerticalAlignment="Center"/>
</Grid>
</Viewbox>
<ContentPresenter HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}" VerticalAlignment="{TemplateBinding VerticalContentAlignment}" SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}" RecognizesAccessKey="True"/>
</Grid>
<ControlTemplate.Triggers>
<Trigger Property="IsMouseOver" Value="true">
<Setter TargetName="ellipse" Property="Stroke" Value="{StaticResource Brush_Application_NavButton_Dark_Ellipse_MouseOver}" />
<Setter TargetName="close_text" Property="Foreground" Value="{StaticResource Brush_Application_NavButton_Dark_Foreground_MouseOver}" />
</Trigger>
<Trigger Property="IsPressed" Value="true">
<Setter TargetName="ellipse" Property="Stroke" Value="{StaticResource Brush_Application_NavButton_Dark_Ellipse_Pressed}" />
<Setter TargetName="close_text" Property="Foreground" Value="{StaticResource Brush_Application_NavButton_Dark_Foreground_Pressed}" />
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
<Style x:Key="BasicParagraphStyle" TargetType="Paragraph">
<Setter Property="Margin" Value="0" />
<Setter Property="LineHeight" Value="1" />
</Style>
<Style x:Key="TextButtonStyle" TargetType="Button">
<Setter Property="MinWidth" Value="0"/>
<Setter Property="MinHeight" Value="0"/>
<Setter Property="Focusable" Value="False" />
<Setter Property="FocusVisualStyle" Value="{x:Null}" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="Button">
<Grid Background="Transparent">
<TextBlock
x:Name="Text"
Text="{TemplateBinding Content}"
Margin="0"
TextWrapping="NoWrap"
Style="{StaticResource SubheaderTextStyle}"/>
</Grid>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
<Style x:Key="PageButtonFlashing" BasedOn="{StaticResource PageButton}" TargetType="{x:Type Button}">
<!--<Setter Property="Height" Value="30"/>
<Setter Property="FontSize" Value="14" />-->
<Setter Property="FontFamily" Value="Segoe UI Bold" />
<!--<Setter Property="Background" Value="#3300DD66"/>-->
<Setter Property="Foreground" Value="{StaticResource Brush_PageContentForegroundMouseOver}" />
<Setter Property="ToolTipService.ToolTip" Value="" />
<Setter Property="ToolTipService.ShowOnDisabled" Value="True" />
<EventSetter Event="ToolTipOpening" Handler="ToolTipEventHandler" />
<Style.Triggers>
<Trigger Property="IsEnabled" Value="True">
<Trigger.EnterActions>
<BeginStoryboard>
<Storyboard>
<ColorAnimation
Storyboard.TargetProperty="(Foreground).(SolidColorBrush.Color)"
From="White"
To="#44FFFFFF"
Duration="0:0:0.5"
AutoReverse="True"
RepeatBehavior="Forever"/>
</Storyboard>
</BeginStoryboard>
</Trigger.EnterActions>
</Trigger>
</Style.Triggers>
</Style>
<Style x:Key="PageButtonBold" BasedOn="{StaticResource PageButton}" TargetType="{x:Type Button}">
<Setter Property="FontFamily" Value="Segoe UI Bold" />
<Setter Property="Foreground" Value="{StaticResource Brush_PageContentForegroundMouseOver}" />
<Setter Property="ToolTipService.ToolTip" Value="" />
<Setter Property="ToolTipService.ShowOnDisabled" Value="True" />
<EventSetter Event="ToolTipOpening" Handler="ToolTipEventHandler" />
</Style>
<Style x:Key="PageButton" BasedOn="{StaticResource FlatButton}" TargetType="{x:Type Button}">
<Setter Property="FontSize" Value="14"/>
<Setter Property="Height" Value="30"/>
<Setter Property="Margin" Value="0"/>
<Setter Property="MinWidth" Value="100"/>
</Style>
<Style x:Key="FlatButton" TargetType="{x:Type Button}">
<Setter Property="Background" Value="{StaticResource Brush_PageContentBackground}" />
<Setter Property="Margin" Value="3" />
<Setter Property="FontSize" Value="12" />
<!--<Setter Property="Width" Value="100" />-->
<Setter Property="FontFamily" Value="Segoe UI Light" />
<Setter Property="HorizontalAlignment" Value="Stretch" />
<Setter Property="Foreground" Value="{StaticResource Brush_PageContentForeground}" />
<Setter Property="FocusVisualStyle" Value="{x:Null}" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type Button}">
<Grid Width="{TemplateBinding Width}" Height="{TemplateBinding Height}">
<!-- Outer Rectangle with rounded corners. -->
<!--<Rectangle x:Name="outerRectangle" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Stroke="{TemplateBinding Background}" Fill="Transparent" /> -->
<!-- Inner Rectangle with rounded corners. -->
<Rectangle x:Name="innerRectangle" Fill="{TemplateBinding Background}" />
<!-- Present Content (text) of the button. -->
<DockPanel x:Name="myContentPresenterDockPanel">
<ContentPresenter x:Name="myContentPresenter"
Margin="5"
VerticalAlignment="Center"
HorizontalAlignment="Center"
Content="{TemplateBinding Content}">
<ContentPresenter.Resources>
<Style TargetType="{x:Type TextBlock}" BasedOn="{StaticResource WrappingStyle}"/>
</ContentPresenter.Resources>
</ContentPresenter>
</DockPanel>
</Grid>
</ControlTemplate>
</Setter.Value>
</Setter>
<Setter Property="Opacity" Value="1"/>
<Setter Property="ToolTipService.ToolTip" Value="" />
<Setter Property="ToolTipService.ShowOnDisabled" Value="True" />
<EventSetter Event="ToolTipOpening" Handler="ToolTipEventHandler" />
<Style.Triggers>
<Trigger Property="IsMouseOver" Value="True">
<Setter Property="Background" Value="{StaticResource Brush_PageContentBackgroundMouseOver}" />
<Setter Property="Foreground" Value="{StaticResource Brush_PageContentForegroundMouseOver}" />
</Trigger>
<Trigger Property="IsPressed" Value="True">
<Setter Property="Background" Value="{StaticResource Brush_PageContentBackgroundPressed}" />
<Setter Property="Foreground" Value="{StaticResource Brush_PageContentForegroundPressed}" />
</Trigger>
<Trigger Property="IsEnabled" Value="False">
<Setter Property="Background" Value="{StaticResource Brush_PageContentBackgroundDisabled}" />
<Setter Property="Foreground" Value="{StaticResource Brush_PageContentForegroundDisabled}" />
</Trigger>
</Style.Triggers>
</Style>
<Style x:Key="GraphStepButton" TargetType="Button" BasedOn="{StaticResource NavStepButton}">
<Setter Property="Height" Value="40" />
</Style>
<Style x:Key="NavStepButton" TargetType="Button">
<Setter Property="Background" Value="Transparent" />
<Setter Property="Margin" Value="0" />
<Setter Property="FontSize" Value="12" />
<Setter Property="Height" Value="20" />
<Setter Property="FontFamily" Value="Segoe UI Light" />
<Setter Property="HorizontalAlignment" Value="Stretch" />
<Setter Property="Foreground" Value="{StaticResource Brush_FlatControlForeground}" />
<Setter Property="FocusVisualStyle" Value="{x:Null}" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type Button}">
<Grid Width="{TemplateBinding Width}" Height="{TemplateBinding Height}">
<!-- Outer Rectangle with rounded corners. -->
<!--<Rectangle x:Name="outerRectangle" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Stroke="{TemplateBinding Background}" Fill="Transparent" /> -->
<!-- Inner Rectangle with rounded corners. -->
<Rectangle x:Name="innerRectangle" Fill="{TemplateBinding Background}" />
<!-- Present Content (text) of the button. -->
<DockPanel x:Name="myContentPresenterDockPanel">
<ContentPresenter x:Name="myContentPresenter"
Margin="0"
VerticalAlignment="Center"
HorizontalAlignment="Left"
Content="{TemplateBinding Content}">
<ContentPresenter.Resources>
<Style TargetType="{x:Type TextBlock}" BasedOn="{StaticResource WrappingStyle}"/>
</ContentPresenter.Resources>
</ContentPresenter>
</DockPanel>
</Grid>
<ControlTemplate.Triggers>
<Trigger Property="IsMouseOver" Value="True">
<!--<Setter Property="Foreground" Value="{StaticResource Brush_NavStepMouseOverForeground}" />-->
</Trigger>
<Trigger Property="IsPressed" Value="True">
<Setter Property="Background" Value="{StaticResource Brush_FlatControlPressedBackground}" />
<Setter Property="Foreground" Value="{StaticResource Brush_FlatControlPressedForeground}" />
</Trigger>
<Trigger Property="IsEnabled" Value="False">
<Setter Property="Background" Value="Transparent" />
<!--<Setter Property="Foreground" Value="{StaticResource Brush_FlatControlDisabledForeground}"/>-->
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>
</Setter.Value>
</Setter>
<Setter Property="Opacity" Value="1"/>
</Style>
<Style x:Key="NavStepRadioButton" TargetType="RadioButton">
<Setter Property="Background" Value="Transparent" />
<Setter Property="Margin" Value="0" />
<Setter Property="FontSize" Value="12" />
<Setter Property="Height" Value="20" />
<Setter Property="FontFamily" Value="Segoe UI Light" />
<Setter Property="HorizontalAlignment" Value="Stretch" />
<Setter Property="Foreground" Value="{StaticResource Brush_FlatControlForeground}" />
<Setter Property="FocusVisualStyle" Value="{x:Null}" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type RadioButton}">
<Grid Width="{TemplateBinding Width}" Height="{TemplateBinding Height}">
<!-- Outer Rectangle with rounded corners. -->
<!--<Rectangle x:Name="outerRectangle" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Stroke="{TemplateBinding Background}" Fill="Transparent" /> -->
<!-- Inner Rectangle with rounded corners. -->
<Rectangle x:Name="innerRectangle" Fill="{TemplateBinding Background}" />
<!-- Present Content (text) of the button. -->
<DockPanel x:Name="myContentPresenterDockPanel">
<ContentPresenter x:Name="myContentPresenter"
Margin="0"
VerticalAlignment="Center"
HorizontalAlignment="Left"
Content="{TemplateBinding Content}">
<ContentPresenter.Resources>
<Style TargetType="{x:Type TextBlock}" BasedOn="{StaticResource WrappingStyle}"/>
</ContentPresenter.Resources>
</ContentPresenter>
</DockPanel>
</Grid>
<ControlTemplate.Triggers>
<Trigger Property="IsMouseOver" Value="True">
<!--<Setter Property="Foreground" Value="{StaticResource Brush_NavStepMouseOverForeground}" />-->
</Trigger>
<Trigger Property="IsPressed" Value="True">
<Setter Property="Background" Value="{StaticResource Brush_FlatControlPressedBackground}" />
<Setter Property="Foreground" Value="{StaticResource Brush_FlatControlPressedForeground}" />
</Trigger>
<Trigger Property="IsEnabled" Value="False">
<Setter Property="Background" Value="Transparent" />
<!--<Setter Property="Foreground" Value="{StaticResource Brush_FlatControlDisabledForeground}"/>-->
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>
</Setter.Value>
</Setter>
<Setter Property="Opacity" Value="1"/>
</Style>
<Style x:Key="PageContentToggleButton" TargetType="ToggleButton">
<Setter Property="Background" Value="Transparent" />
<Setter Property="Margin" Value="5,0" />
<Setter Property="Height" Value="30" />
<Setter Property="MinWidth" Value="74" />
<Setter Property="FontSize" Value="10" />
<Setter Property="FontFamily" Value="Segoe UI" />
<Setter Property="HorizontalAlignment" Value="Stretch" />
<Setter Property="Foreground" Value="{StaticResource Brush_FlatControlForeground}" />
<Setter Property="FocusVisualStyle" Value="{x:Null}" />
<Setter Property="BorderBrush" Value="{StaticResource Brush_FlatControlDarkForeground}" />
<Setter Property="BorderThickness" Value="1"/>
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type ToggleButton}">
<Grid Width="{TemplateBinding Width}" Height="{TemplateBinding Height}">
<!-- Outer Rectangle with rounded corners. -->
<!--<Rectangle x:Name="outerRectangle" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Stroke="{TemplateBinding Background}" Fill="Transparent" /> -->
<!-- Inner Rectangle with rounded corners. -->
<Rectangle x:Name="innerRectangle" Fill="{TemplateBinding Background}" Stroke="{TemplateBinding BorderBrush}" StrokeThickness="{TemplateBinding BorderThickness}"/>
<!-- Present Content (text) of the button. -->
<DockPanel x:Name="myContentPresenterDockPanel">
<ContentPresenter x:Name="myContentPresenter"
Margin="5,0"
VerticalAlignment="{TemplateBinding VerticalContentAlignment}"
HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}"
Content="{TemplateBinding Content}">
<ContentPresenter.Resources>
<Style TargetType="{x:Type TextBlock}" BasedOn="{StaticResource WrappingStyle}"/>
</ContentPresenter.Resources>
</ContentPresenter>
</DockPanel>
</Grid>
<ControlTemplate.Triggers>
<Trigger Property="IsMouseOver" Value="True">
<Setter Property="Background" Value="{StaticResource Brush_NavStepMouseOverBackground}" />
<Setter Property="Foreground" Value="{StaticResource Brush_NavStepMouseOverForeground}" />
</Trigger>
<Trigger Property="IsPressed" Value="True">
<Setter Property="Background" Value="{StaticResource Brush_FlatControlPressedBackground}" />
<Setter Property="Foreground" Value="{StaticResource Brush_FlatControlPressedForeground}" />
</Trigger>
<Trigger Property="IsEnabled" Value="False">
<Setter Property="Background" Value="Transparent" />
<Setter Property="Foreground" Value="{StaticResource Brush_FlatControlDisabledForeground}"/>
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>
</Setter.Value>
</Setter>
<Setter Property="Opacity" Value="1"/>
<Setter Property="ToolTipService.ToolTip" Value="" />
<Setter Property="ToolTipService.ShowOnDisabled" Value="True" />
<EventSetter Event="ToolTipOpening" Handler="ToolTipEventHandler" />
</Style>
<Style x:Key="GoPageContentToggleButton" TargetType="ToggleButton">
<Setter Property="Background" Value="White" />
<Setter Property="Margin" Value="5,0" />
<Setter Property="Height" Value="30" />
<Setter Property="MinWidth" Value="74" />
<Setter Property="FontSize" Value="10" />
<Setter Property="FontFamily" Value="Segoe UI" />
<Setter Property="HorizontalAlignment" Value="Stretch" />
<Setter Property="Foreground" Value="{StaticResource Brush_FlatControlForeground}" />
<Setter Property="FocusVisualStyle" Value="{x:Null}" />
<Setter Property="BorderBrush" Value="{StaticResource Brush_FlatControlDarkForeground}" />
<Setter Property="BorderThickness" Value="1"/>
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type ToggleButton}">
<Grid Width="{TemplateBinding Width}" Height="{TemplateBinding Height}">
<!-- Outer Rectangle with rounded corners. -->
<!--<Rectangle x:Name="outerRectangle" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Stroke="{TemplateBinding Background}" Fill="Transparent" /> -->
<!-- Inner Rectangle with rounded corners. -->
<Rectangle x:Name="innerRectangle" Fill="{TemplateBinding Background}" Stroke="{TemplateBinding BorderBrush}" StrokeThickness="{TemplateBinding BorderThickness}"/>
<!-- Present Content (text) of the button. -->
<DockPanel x:Name="myContentPresenterDockPanel">
<ContentPresenter x:Name="myContentPresenter"
Margin="5,0"
VerticalAlignment="{TemplateBinding VerticalContentAlignment}"
HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}"
Content="{TemplateBinding Content}">
<ContentPresenter.Resources>
<Style TargetType="{x:Type TextBlock}" BasedOn="{StaticResource WrappingStyle}"/>
</ContentPresenter.Resources>
</ContentPresenter>
</DockPanel>
</Grid>
<ControlTemplate.Triggers>
<Trigger Property="IsMouseOver" Value="True">
<Setter Property="Background" Value="{StaticResource Brush_NavStepMouseOverBackground}" />
<Setter Property="Foreground" Value="{StaticResource Brush_NavStepMouseOverForeground}" />
</Trigger>
<Trigger Property="IsPressed" Value="True">
<Setter Property="Background" Value="White" />
<Setter Property="Foreground" Value="{StaticResource Brush_FlatControlPressedForeground}" />
</Trigger>
<Trigger Property="IsEnabled" Value="False">
<Setter Property="Background" Value="White" />
<Setter Property="Foreground" Value="{StaticResource Brush_FlatControlDisabledForeground}"/>
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>
</Setter.Value>
</Setter>
<Setter Property="Opacity" Value="1"/>
<Setter Property="ToolTipService.ToolTip" Value="" />
<Setter Property="ToolTipService.ShowOnDisabled" Value="True" />
<EventSetter Event="ToolTipOpening" Handler="ToolTipEventHandler" />
</Style>
<Style x:Key="PageContentButton" TargetType="Button">
<Setter Property="Background" Value="Transparent" />
<Setter Property="Margin" Value="5,0" />
<Setter Property="Height" Value="30" />
<Setter Property="MinWidth" Value="74" />
<Setter Property="FontSize" Value="10" />
<Setter Property="FontFamily" Value="Segoe UI" />
<Setter Property="HorizontalAlignment" Value="Stretch" />
<Setter Property="Foreground" Value="{StaticResource Brush_FlatControlForeground}" />
<Setter Property="FocusVisualStyle" Value="{x:Null}" />
<Setter Property="BorderBrush" Value="{StaticResource Brush_FlatControlDarkForeground}" />
<Setter Property="BorderThickness" Value="1"/>
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type Button}">
<Grid Width="{TemplateBinding Width}" Height="{TemplateBinding Height}">
<!-- Outer Rectangle with rounded corners. -->
<!--<Rectangle x:Name="outerRectangle" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Stroke="{TemplateBinding Background}" Fill="Transparent" /> -->
<!-- Inner Rectangle with rounded corners. -->
<Rectangle x:Name="innerRectangle" Fill="{TemplateBinding Background}" Stroke="{TemplateBinding BorderBrush}" StrokeThickness="{TemplateBinding BorderThickness}"/>
<!-- Present Content (text) of the button. -->
<DockPanel x:Name="myContentPresenterDockPanel">
<ContentPresenter x:Name="myContentPresenter"
Margin="5,0"
VerticalAlignment="{TemplateBinding VerticalContentAlignment}"
HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}"
Content="{TemplateBinding Content}">
<ContentPresenter.Resources>
<Style TargetType="{x:Type TextBlock}" BasedOn="{StaticResource WrappingStyle}"/>
</ContentPresenter.Resources>
</ContentPresenter>
</DockPanel>
</Grid>
<ControlTemplate.Triggers>
<Trigger Property="IsMouseOver" Value="True">
<Setter Property="Background" Value="{StaticResource Brush_NavStepMouseOverBackground}" />
<Setter Property="Foreground" Value="{StaticResource Brush_NavStepMouseOverForeground}" />
</Trigger>
<Trigger Property="IsPressed" Value="True">
<Setter Property="Background" Value="{StaticResource Brush_FlatControlPressedBackground}" />
<Setter Property="Foreground" Value="{StaticResource Brush_FlatControlPressedForeground}" />
</Trigger>
<Trigger Property="IsEnabled" Value="False">
<Setter Property="Background" Value="Transparent" />
<Setter Property="Foreground" Value="{StaticResource Brush_FlatControlDisabledForeground}"/>
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>
</Setter.Value>
</Setter>
<Setter Property="ToolTipService.ToolTip" Value="" />
<Setter Property="ToolTipService.ShowOnDisabled" Value="True" />
<EventSetter Event="ToolTipOpening" Handler="ToolTipEventHandler" />
<Setter Property="Opacity" Value="1"/>
</Style>
<Style x:Key="PageContentButtonDark" TargetType="Button">
<Setter Property="Background" Value="{StaticResource Brush_FlatControlDarkBackground}" />
<Setter Property="Margin" Value="5,0" />
<Setter Property="Height" Value="30" />
<Setter Property="MinWidth" Value="74" />
<Setter Property="FontSize" Value="10" />
<Setter Property="FontFamily" Value="Segoe UI" />
<Setter Property="HorizontalAlignment" Value="Stretch" />
<Setter Property="Foreground" Value="{StaticResource Brush_FlatControlDarkForeground}" />
<Setter Property="FocusVisualStyle" Value="{x:Null}" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type Button}">
<Grid Width="{TemplateBinding Width}" Height="{TemplateBinding Height}">
<!-- Outer Rectangle with rounded corners. -->
<!--<Rectangle x:Name="outerRectangle" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Stroke="{TemplateBinding Background}" Fill="Transparent" /> -->
<!-- Inner Rectangle with rounded corners. -->
<Rectangle x:Name="innerRectangle" Fill="{TemplateBinding Background}" />
<!-- Present Content (text) of the button. -->
<DockPanel x:Name="myContentPresenterDockPanel">
<ContentPresenter x:Name="myContentPresenter"
Margin="0"
VerticalAlignment="Center"
HorizontalAlignment="Center"
Content="{TemplateBinding Content}">
<ContentPresenter.Resources>
<Style TargetType="{x:Type TextBlock}" BasedOn="{StaticResource WrappingStyle}"/>
</ContentPresenter.Resources>
</ContentPresenter>
</DockPanel>
</Grid>
<ControlTemplate.Triggers>
<Trigger Property="IsMouseOver" Value="True">
<Setter Property="Background" Value="{StaticResource Brush_FlatControlDarkBackgroundMouseOver}" />
<Setter Property="Foreground" Value="{StaticResource Brush_FlatControlDarkForegroundMouseOver}" />
</Trigger>
<Trigger Property="IsPressed" Value="True">
<Setter Property="Background" Value="{StaticResource Brush_FlatControlDarkBackgroundPressed}" />
<Setter Property="Foreground" Value="{StaticResource Brush_FlatControlDarkForegroundPressed}" />
</Trigger>
<Trigger Property="IsEnabled" Value="False">
<Setter Property="Background" Value="{StaticResource Brush_FlatControlDarkBackgroundDisabled}" />
<Setter Property="Foreground" Value="{StaticResource Brush_FlatControlDarkForegroundDisabled}"/>
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>
</Setter.Value>
</Setter>
<Setter Property="Opacity" Value="1"/>
</Style>
<Style x:Key="ActionButton" TargetType="Button">
<Setter Property="Background" Value="{StaticResource Brush_ActionElementBackground}" />
<Setter Property="Margin" Value="4,0,4,0" />
<Setter Property="FontSize" Value="10" />
<Setter Property="FontFamily" Value="Segoe UI Light" />
<Setter Property="Foreground" Value="{StaticResource Brush_ActionElementForeground}" />
<Setter Property="FocusVisualStyle" Value="{x:Null}" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type Button}">
<Grid Width="{TemplateBinding Width}" Height="{TemplateBinding Height}">
<!-- Outer Rectangle with rounded corners. -->
<!--<Rectangle x:Name="outerRectangle" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Stroke="{TemplateBinding Background}" Fill="Transparent" /> -->
<!-- Inner Rectangle with rounded corners. -->
<Rectangle x:Name="innerRectangle" Fill="{TemplateBinding Background}" />
<!-- Present Content (text) of the button. -->
<DockPanel x:Name="myContentPresenterDockPanel">
<ContentPresenter x:Name="myContentPresenter"
Margin="{TemplateBinding Margin}"
VerticalAlignment="Center"
HorizontalAlignment="Center"
Content="{TemplateBinding Content}">
<ContentPresenter.Resources>
<Style TargetType="{x:Type TextBlock}" BasedOn="{StaticResource WrappingStyle}"/>
</ContentPresenter.Resources>
</ContentPresenter>
</DockPanel>
</Grid>
<ControlTemplate.Triggers>
<Trigger Property="IsMouseOver" Value="True">
<Setter Property="Background" Value="{StaticResource Brush_ActionElementBackgroundMouseOver}" />
<Setter Property="Foreground" Value="{StaticResource Brush_ActionElementForegroundMouseOver}" />
</Trigger>
<Trigger Property="IsPressed" Value="True">
<Setter Property="Background" Value="{StaticResource Brush_ActionElementBackgroundPressed}" />
<Setter Property="Foreground" Value="{StaticResource Brush_ActionElementForegroundPressed}" />
</Trigger>
<Trigger Property="IsEnabled" Value="False">
<Setter Property="Background" Value="{StaticResource Brush_FlatControlDisabledBackground}" />
<Setter Property="Foreground" Value="{StaticResource Brush_FlatControlDisabledForeground}"/>
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>
</Setter.Value>
</Setter>
<Setter Property="Opacity" Value="1"/>
</Style>
<Style x:Key="ActionButtonDistinct" TargetType="Button">
<Setter Property="Background" Value="{StaticResource Brush_ActionElementDistinctBackground}" />
<Setter Property="Margin" Value="12,0,4,0" />
<Setter Property="FontSize" Value="18" />
<Setter Property="MinWidth" Value="100" />
<Setter Property="MaxWidth" Value="180" />
<Setter Property="Height" Value="35" />
<Setter Property="FontFamily" Value="Segoe UI Light" />
<Setter Property="Foreground" Value="{StaticResource Brush_ActionElementDistinctForeground}" />
<Setter Property="FocusVisualStyle" Value="{x:Null}" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type Button}">
<Grid Width="{TemplateBinding Width}" Height="{TemplateBinding Height}">
<!-- Outer Rectangle with rounded corners. -->
<!--<Rectangle x:Name="outerRectangle" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Stroke="{TemplateBinding Background}" Fill="Transparent" /> -->
<!-- Inner Rectangle with rounded corners. -->
<Rectangle x:Name="innerRectangle" Fill="{TemplateBinding Background}" />
<!-- Present Content (text) of the button. -->
<DockPanel x:Name="myContentPresenterDockPanel">
<ContentPresenter x:Name="myContentPresenter"
Margin="5,0,5,0"
VerticalAlignment="Center"
HorizontalAlignment="Center"
Content="{TemplateBinding Content}">
<ContentPresenter.Resources>
<Style TargetType="{x:Type TextBlock}" BasedOn="{StaticResource WrappingStyle}"/>
</ContentPresenter.Resources>
</ContentPresenter>
</DockPanel>
</Grid>
<ControlTemplate.Triggers>
<Trigger Property="IsMouseOver" Value="True">
<Setter Property="Background" Value="{StaticResource Brush_ActionElementDistinctBackgroundMouseOver}" />
<Setter Property="Foreground" Value="{StaticResource Brush_ActionElementDistinctForegroundMouseOver}" />
</Trigger>
<Trigger Property="IsPressed" Value="True">
<Setter Property="Background" Value="{StaticResource Brush_ActionElementDistinctBackgroundPressed}" />
<Setter Property="Foreground" Value="{StaticResource Brush_ActionElementDistinctForegroundPressed}" />
</Trigger>
<Trigger Property="IsEnabled" Value="False">
<Setter Property="Background" Value="{StaticResource Brush_ActionElementDistinctBackgroundDisabled}" />
<Setter Property="Foreground" Value="{StaticResource Brush_ActionElementDistinctForegroundDisabled}"/>
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>
</Setter.Value>
</Setter>
<Setter Property="Opacity" Value="1"/>
</Style>
<Style x:Key="ReviewHeaderButtonStyle" TargetType="Button" BasedOn="{StaticResource FlatButton}">
<Setter Property="FontSize" Value="12" />
<Setter Property="Width" Value="80" />
<Setter Property="Height" Value="20" />
<Setter Property="Margin" Value="0,0,4,0" />
<Setter Property="HorizontalAlignment" Value="Center" />
<Setter Property="VerticalAlignment" Value="Center" />
</Style>
<Style x:Key="ReviewHeaderRadioButtonStyle" TargetType="RadioButton" BasedOn="{StaticResource Action_FlatRadioButtonStyle}">
<Setter Property="Height" Value="20" />
<Setter Property="TextBlock.FontSize" Value="12" />
<Setter Property="HorizontalAlignment" Value="Center" />
<Setter Property="VerticalAlignment" Value="Center" />
<Setter Property="Width" Value="74" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type RadioButton}">
<BulletDecorator
x:Name="box"
Background="Black"
TextBlock.Foreground="White"
TextBlock.FontFamily="Segoe UI Light"
TextBlock.TextAlignment="Center"
Margin="0"
>
<ContentPresenter VerticalAlignment="Center" x:Name="CheckMark" RecognizesAccessKey="True"/>
</BulletDecorator>
<ControlTemplate.Triggers>
<Trigger Property="IsChecked" Value="True">
<Setter TargetName="box" Property="Background" Value="Green" />
</Trigger>
<Trigger Property="IsMouseOver" Value="true">
<Setter TargetName="box" Property="TextBlock.Foreground" Value="#FFC3C3C3"/>
</Trigger>
<Trigger Property="IsPressed" Value="true">
<Setter TargetName="box" Property="Background" Value="#FF003C00" />
</Trigger>
<Trigger Property="IsEnabled" Value="false">
<Setter TargetName="box" Property="Background" Value="{StaticResource Brush_FlatControlDisabledBackground}" />
<Setter TargetName="box" Property="TextBlock.Foreground" Value="{StaticResource Brush_FlatControlDisabledForeground}"/>
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
<Style x:Key="FlatButton_ChangeTest" TargetType="{x:Type Button}">
<Setter Property="Background" Value="#EEE" />
<Setter Property="Margin" Value="5" />
<Setter Property="FontSize" Value="16" />
<Setter Property="FontFamily" Value="Segoe UI Light" />
<Setter Property="HorizontalAlignment" Value="Stretch" />
<Setter Property="Foreground" Value="#000" />
<Setter Property="Height" Value="60" />
<Setter Property="MaxHeight" Value="60"/>
<Setter Property="MaxWidth" Value="400"/>
<Setter Property="Width" Value="400"/>
<Setter Property="FocusVisualStyle" Value="{x:Null}" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type Button}">
<Grid Width="{TemplateBinding Width}" Height="{TemplateBinding Height}">
<!-- Inner Rectangle with rounded corners. -->
<Rectangle x:Name="innerRectangle" Fill="{TemplateBinding Background}"/>
<!-- Outer Rectangle with rounded corners. -->
<Rectangle x:Name="outerRectangle" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Stroke="#000" Fill="Transparent" />
<!-- Present Content (text) of the button. -->
<DockPanel x:Name="myContentPresenterDockPanel">
<ContentPresenter x:Name="myContentPresenter"
Margin="5"
VerticalAlignment="Center"
HorizontalAlignment="Center"
Content="{TemplateBinding Content}">
<ContentPresenter.Resources>
<Style TargetType="{x:Type TextBlock}" BasedOn="{StaticResource WrappingStyle}"/>
</ContentPresenter.Resources>
</ContentPresenter>
</DockPanel>
</Grid>
</ControlTemplate>
</Setter.Value>
</Setter>
<Setter Property="Opacity" Value="1"/>
<Style.Triggers>
<Trigger Property="IsMouseOver" Value="True">
<Setter Property="Background" Value="#FFF" />
<Setter Property="Foreground" Value="#000" />
</Trigger>
<Trigger Property="IsPressed" Value="True">
<Setter Property="Background" Value="#888" />
<Setter Property="Foreground" Value="#000" />
</Trigger>
<Trigger Property="IsEnabled" Value="False">
<Setter Property="Background" Value="#666" />
<Setter Property="Foreground" Value="#DDD" />
</Trigger>
</Style.Triggers>
</Style>
<Style x:Key="FlatButton_ChangeTestCheckout" TargetType="{x:Type Button}">
<Setter Property="Background" Value="#EEE" />
<Setter Property="Margin" Value="5" />
<Setter Property="FontSize" Value="16" />
<Setter Property="FontFamily" Value="Segoe UI Light" />
<Setter Property="HorizontalAlignment" Value="Stretch" />
<Setter Property="Foreground" Value="#000" />
<Setter Property="Height" Value="60" />
<Setter Property="MaxHeight" Value="60"/>
<Setter Property="MaxWidth" Value="400"/>
<Setter Property="Width" Value="400"/>
<Setter Property="FocusVisualStyle" Value="{x:Null}" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type Button}">
<Grid Width="{TemplateBinding Width}" Height="{TemplateBinding Height}">
<!-- Inner Rectangle with rounded corners. -->
<Rectangle x:Name="innerRectangle" Fill="{TemplateBinding Background}"/>
<!-- Outer Rectangle with rounded corners. -->
<Rectangle x:Name="outerRectangle" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Stroke="#000" Fill="Transparent" />
<!-- Present Content (text) of the button. -->
<DockPanel x:Name="myContentPresenterDockPanel">
<ContentPresenter x:Name="myContentPresenter"
Margin="5"
VerticalAlignment="Center"
HorizontalAlignment="Center"
Content="{TemplateBinding Content}">
<ContentPresenter.Resources>
<Style TargetType="{x:Type TextBlock}" BasedOn="{StaticResource WrappingStyle}"/>
</ContentPresenter.Resources>
</ContentPresenter>
</DockPanel>
</Grid>
</ControlTemplate>
</Setter.Value>
</Setter>
<Setter Property="Opacity" Value="1"/>
<Style.Triggers>
<Trigger Property="IsMouseOver" Value="True">
<Setter Property="Background" Value="#FFF" />
<Setter Property="Foreground" Value="#000" />
</Trigger>
<Trigger Property="IsPressed" Value="True">
<Setter Property="Background" Value="#888" />
<Setter Property="Foreground" Value="#000" />
</Trigger>
<Trigger Property="IsEnabled" Value="False">
<Setter Property="Background" Value="Red" />
<Setter Property="Foreground" Value="White" />
</Trigger>
</Style.Triggers>
</Style>
<Style x:Key="FlatButton_ChangeTestRunTest" TargetType="{x:Type Button}">
<Setter Property="Background" Value="#EEE" />
<Setter Property="Margin" Value="5" />
<Setter Property="FontSize" Value="16" />
<Setter Property="FontFamily" Value="Segoe UI Light" />
<Setter Property="HorizontalAlignment" Value="Stretch" />
<Setter Property="Foreground" Value="#000" />
<Setter Property="Height" Value="60" />
<Setter Property="MaxHeight" Value="60"/>
<Setter Property="MaxWidth" Value="400"/>
<Setter Property="Width" Value="400"/>
<Setter Property="FocusVisualStyle" Value="{x:Null}" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type Button}">
<Grid Width="{TemplateBinding Width}" Height="{TemplateBinding Height}">
<!-- Inner Rectangle with rounded corners. -->
<Rectangle x:Name="innerRectangle" Fill="{TemplateBinding Background}"/>
<!-- Outer Rectangle with rounded corners. -->
<Rectangle x:Name="outerRectangle" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Stroke="#000" Fill="Transparent" />
<!-- Present Content (text) of the button. -->
<DockPanel x:Name="myContentPresenterDockPanel">
<ContentPresenter x:Name="myContentPresenter"
Margin="5"
VerticalAlignment="Center"
HorizontalAlignment="Center"
Content="{TemplateBinding Content}">
<ContentPresenter.Resources>
<Style TargetType="{x:Type TextBlock}" BasedOn="{StaticResource WrappingStyle}"/>
</ContentPresenter.Resources>
</ContentPresenter>
</DockPanel>
</Grid>
</ControlTemplate>
</Setter.Value>
</Setter>
<Setter Property="Opacity" Value="1"/>
<Style.Triggers>
<Trigger Property="IsMouseOver" Value="True">
<Setter Property="Background" Value="#FFF" />
<Setter Property="Foreground" Value="#000" />
</Trigger>
<Trigger Property="IsPressed" Value="True">
<Setter Property="Background" Value="#888" />
<Setter Property="Foreground" Value="#000" />
</Trigger>
<Trigger Property="IsEnabled" Value="False">
<Setter Property="Background" Value="LightGreen" />
<Setter Property="Foreground" Value="Black" />
</Trigger>
</Style.Triggers>
</Style>
<Style x:Key="ExpanderButton" TargetType="{x:Type Button}">
<Setter Property="Background" Value="{StaticResource Brush_PageContentBackground}" />
<Setter Property="Margin" Value="3" />
<Setter Property="FontSize" Value="12" />
<!--<Setter Property="Width" Value="100" />-->
<Setter Property="FontFamily" Value="Segoe UI Light" />
<Setter Property="HorizontalAlignment" Value="Stretch" />
<Setter Property="Foreground" Value="{StaticResource Brush_PageContentForeground}" />
<Setter Property="FocusVisualStyle" Value="{x:Null}" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type Button}">
<Grid Width="{TemplateBinding Width}" Height="{TemplateBinding Height}">
<!-- Outer Rectangle with rounded corners. -->
<!--<Rectangle x:Name="outerRectangle" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Stroke="{TemplateBinding Background}" Fill="Transparent" /> -->
<!-- Inner Rectangle with rounded corners. -->
<Rectangle x:Name="innerRectangle" Fill="{TemplateBinding Background}" />
<!-- Present Content (text) of the button. -->
<DockPanel x:Name="myContentPresenterDockPanel">
<ContentPresenter x:Name="myContentPresenter"
Margin="5"
VerticalAlignment="Center"
HorizontalAlignment="Center"
Content="{TemplateBinding Content}">
<ContentPresenter.Resources>
<Style TargetType="{x:Type TextBlock}" BasedOn="{StaticResource WrappingStyle}"/>
</ContentPresenter.Resources>
</ContentPresenter>
</DockPanel>
</Grid>
</ControlTemplate>
</Setter.Value>
</Setter>
<Setter Property="Opacity" Value="1"/>
<Style.Triggers>
<Trigger Property="IsMouseOver" Value="True">
<Setter Property="Background" Value="{StaticResource Brush_PageContentBackgroundMouseOver}" />
<Setter Property="Foreground" Value="{StaticResource Brush_PageContentForegroundMouseOver}" />
</Trigger>
<Trigger Property="IsPressed" Value="True">
<Setter Property="Background" Value="{StaticResource Brush_PageContentBackgroundPressed}" />
<Setter Property="Foreground" Value="{StaticResource Brush_PageContentForegroundPressed}" />
</Trigger>
<Trigger Property="IsEnabled" Value="False">
<Setter Property="Background" Value="{StaticResource Brush_PageContentBackgroundDisabled}" />
<Setter Property="Foreground" Value="{StaticResource Brush_PageContentForegroundDisabled}" />
</Trigger>
</Style.Triggers>
</Style>
<Style x:Key="ActionLabel" TargetType="Label">
<Setter Property="Foreground" Value="White" />
<Setter Property="Margin" Value="0" />
<Setter Property="FontSize" Value="12" />
<Setter Property="Width" Value="100" />
<Setter Property="FontFamily" Value="Segoe UI Light" />
<Setter Property="VerticalAlignment" Value="Center" />
<Setter Property="HorizontalContentAlignment" Value="Right" />
</Style>
<Style x:Key="SimpleHeader" TargetType="Label">
<Setter Property="Width" Value="{Binding Width}"/>
<Setter Property="MinWidth" Value="520" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type Label}">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto" />
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>
<TextBlock Grid.Column="0" Text="{TemplateBinding Content}" Style="{StaticResource txtStyle_PageSectionHeader}"/>
<Grid Grid.Column="1" Height="1" Background="Black" Margin="10"/>
</Grid>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
<Style x:Key="SimpleHeaderNoLine" TargetType="Label">
<Setter Property="Width" Value="{Binding Width}"/>
<Setter Property="MinWidth" Value="520" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type Label}">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto" />
</Grid.ColumnDefinitions>
<TextBlock Grid.Column="0" Text="{TemplateBinding Content}" Style="{StaticResource txtStyle_PageSectionHeader}"/>
</Grid>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
<Style x:Key="SimpleExpanderTemp" TargetType="Expander">
<Setter Property="Width" Value="{Binding Width}"/>
<Setter Property="MinWidth" Value="520" />
<Setter Property="IsExpanded" Value="True" />
<Setter Property="Template">
<Setter.Value>
<!-- Simple Expander Template-->
<ControlTemplate TargetType="{x:Type Expander}">
<DockPanel>
<Grid DockPanel.Dock="Top">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto" />
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>
<ToggleButton x:Name="ExpanderButton"
Grid.Column="0"
Style="{StaticResource AnimatedExpanderButtonTemp}"
Content="{TemplateBinding Header}"
IsChecked="{Binding Path=IsExpanded, RelativeSource={RelativeSource TemplatedParent}}"
OverridesDefaultStyle="True"
Padding="1.5,0">
</ToggleButton>
<!--UI Division-->
<Grid Grid.Column="1" Height="1" Background="Black" Margin="10"/>
</Grid>
<ContentPresenter x:Name="ExpanderContent"
DockPanel.Dock="Bottom"
Grid.Row="1"
Visibility="Collapsed"/>
</DockPanel>
<ControlTemplate.Triggers>
<Trigger Property="IsExpanded" Value="True">
<Setter TargetName="ExpanderContent" Property="Visibility" Value="Visible"/>
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
<Style x:Key="AnimatedExpanderButtonTemp" TargetType="{x:Type ToggleButton}">
<Setter Property="Template">
<Setter.Value>
<!-- Animated Expander Button's Template-->
<ControlTemplate TargetType="{x:Type ToggleButton}">
<Border x:Name="ExpanderButtonBorder"
Background="{TemplateBinding Background}"
BorderBrush="{TemplateBinding BorderBrush}"
BorderThickness="{TemplateBinding BorderThickness}"
Padding="{TemplateBinding Padding}"
>
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto"/>
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>
<Rectangle Fill="Transparent"
Grid.ColumnSpan="2"/>
<Ellipse Name="Circle"
Grid.Column="0"
Stroke="DarkGray"
Width="20"
Height="20"
HorizontalAlignment="Center"
VerticalAlignment="Center"
/>
<Path x:Name="Arrow"
Grid.Column="0"
Data="M 1,1.5 L 4.5,5 8,1.5"
Stroke="#FF666666"
StrokeThickness="2"
HorizontalAlignment="Center"
VerticalAlignment="Center"
RenderTransformOrigin="0.5,0.5"
>
<Path.RenderTransform>
<RotateTransform Angle="0"/>
</Path.RenderTransform>
</Path>
<TextBlock Grid.Column="1" Text="{TemplateBinding Content}" Style="{StaticResource txtStyle_PageSectionHeader}"/>
</Grid>
</Border>
<ControlTemplate.Triggers>
<!-- Animate arrow when toggled-->
<Trigger Property="IsChecked"
Value="True">
<Trigger.EnterActions>
<BeginStoryboard>
<Storyboard>
<DoubleAnimation Storyboard.TargetName="Arrow"
Storyboard.TargetProperty="(Path.RenderTransform).(RotateTransform.Angle)"
To="0"
Duration="0:0:0.4"/>
</Storyboard>
</BeginStoryboard>
</Trigger.EnterActions>
<Trigger.ExitActions>
<BeginStoryboard>
<Storyboard>
<DoubleAnimation Storyboard.TargetName="Arrow"
Storyboard.TargetProperty="(Path.RenderTransform).(RotateTransform.Angle)"
To="180"
Duration="0:0:0.4"/>
</Storyboard>
</BeginStoryboard>
</Trigger.ExitActions>
</Trigger>
<Trigger Property="IsChecked" Value="False">
<Trigger.EnterActions>
<BeginStoryboard>
<Storyboard>
<DoubleAnimation Storyboard.TargetName="Arrow"
Storyboard.TargetProperty="(Path.RenderTransform).(RotateTransform.Angle)"
To="180"
Duration="0:0:0.4"/>
</Storyboard>
</BeginStoryboard>
</Trigger.EnterActions>
<Trigger.ExitActions>
<BeginStoryboard>
<Storyboard>
<DoubleAnimation Storyboard.TargetName="Arrow"
Storyboard.TargetProperty="(Path.RenderTransform).(RotateTransform.Angle)"
To="0"
Duration="0:0:0.4"/>
</Storyboard>
</BeginStoryboard>
</Trigger.ExitActions>
</Trigger>
<!-- MouseOver, Pressed behaviours-->
<Trigger Property="IsMouseOver"
Value="true">
<Setter Property="Stroke"
Value="#FF3C7FB1"
TargetName="Circle"/>
<Setter Property="Stroke"
Value="#222"
TargetName="Arrow"/>
</Trigger>
<Trigger Property="IsPressed"
Value="true">
<Setter Property="Stroke"
Value="#FF526C7B"
TargetName="Circle"/>
<Setter Property="StrokeThickness"
Value="1.5"
TargetName="Circle"/>
<Setter Property="Stroke"
Value="#FF003366"
TargetName="Arrow"/>
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>
</Setter.Value>
</Setter>
<Setter Property="ToolTipService.ToolTip" Value="" />
<Setter Property="ToolTipService.ShowOnDisabled" Value="True" />
<EventSetter Event="ToolTipOpening" Handler="ToolTipEventHandler" />
</Style>
<Style x:Key="SimpleExpanderSmall" TargetType="Expander" BasedOn="{StaticResource SimpleExpanderTemp}">
<Setter Property="MinWidth" Value="0"/>
<Setter Property="HorizontalAlignment" Value="Left"/>
<Setter Property="Template">
<Setter.Value>
<!-- Simple Expander Template-->
<ControlTemplate TargetType="{x:Type Expander}">
<DockPanel>
<Grid DockPanel.Dock="Top">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto" />
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>
<ToggleButton x:Name="ExpanderButton"
Grid.Column="0"
Style="{StaticResource AnimatedExpanderButtonSmall}"
Content="{TemplateBinding Header}"
IsChecked="{Binding Path=IsExpanded, RelativeSource={RelativeSource TemplatedParent}}"
OverridesDefaultStyle="True"
Padding="1.5,0">
</ToggleButton>
<!--UI Division-->
<Grid Grid.Column="1" Height="1" Background="Black" Margin="10"/>
</Grid>
<ContentPresenter x:Name="ExpanderContent"
DockPanel.Dock="Bottom"
Grid.Row="1"
Visibility="Collapsed"/>
</DockPanel>
<ControlTemplate.Triggers>
<Trigger Property="IsExpanded" Value="True">
<Setter TargetName="ExpanderContent" Property="Visibility" Value="Visible"/>
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
<Style x:Key="AnimatedExpanderButtonSmall" TargetType="{x:Type ToggleButton}">
<Setter Property="VerticalAlignment" Value="Stretch"/>
<Setter Property="Height" Value="Auto"/>
<Setter Property="Margin" Value="0"/>
<Setter Property="Template">
<Setter.Value>
<!-- Animated Expander Button's Template-->
<ControlTemplate TargetType="{x:Type ToggleButton}">
<Border x:Name="ExpanderButtonBorder"
Background="{TemplateBinding Background}"
BorderBrush="{TemplateBinding BorderBrush}"
BorderThickness="{TemplateBinding BorderThickness}"
Padding="{TemplateBinding Padding}"
>
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto"/>
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>
<Rectangle Fill="Transparent"
Grid.ColumnSpan="2"/>
<Ellipse Name="Circle"
Grid.Column="0"
Stroke="DarkGray"
Width="15"
Height="15"
HorizontalAlignment="Center"
VerticalAlignment="Center"
/>
<Path x:Name="Arrow"
Grid.Column="0"
Data="M 1,1.5 L 4.5,5 8,1.5"
Stroke="#FF666666"
StrokeThickness="2"
HorizontalAlignment="Center"
VerticalAlignment="Center"
RenderTransformOrigin="0.5,0.5"
>
<Path.RenderTransform>
<RotateTransform Angle="180"/>
</Path.RenderTransform>
</Path>
<TextBlock Grid.Column="1"
Margin="5,0"
Text="{TemplateBinding Content}" VerticalAlignment="Center"
Style="{StaticResource BaselineTextStyle3}"/>
</Grid>
</Border>
<ControlTemplate.Triggers>
<!-- Animate arrow when toggled-->
<Trigger Property="IsChecked"
Value="True">
<Trigger.EnterActions>
<BeginStoryboard>
<Storyboard>
<DoubleAnimation Storyboard.TargetName="Arrow"
Storyboard.TargetProperty="(Path.RenderTransform).(RotateTransform.Angle)"
To="180"
Duration="0:0:0.4"/>
</Storyboard>
</BeginStoryboard>
</Trigger.EnterActions>
<Trigger.ExitActions>
<BeginStoryboard>
<Storyboard>
<DoubleAnimation Storyboard.TargetName="Arrow"
Storyboard.TargetProperty="(Path.RenderTransform).(RotateTransform.Angle)"
To="0"
Duration="0:0:0.4"/>
</Storyboard>
</BeginStoryboard>
</Trigger.ExitActions>
</Trigger>
<Trigger Property="IsChecked" Value="False">
<Trigger.EnterActions>
<BeginStoryboard>
<Storyboard>
<DoubleAnimation Storyboard.TargetName="Arrow"
Storyboard.TargetProperty="(Path.RenderTransform).(RotateTransform.Angle)"
To="0"
Duration="0:0:0.4"/>
</Storyboard>
</BeginStoryboard>
</Trigger.EnterActions>
<Trigger.ExitActions>
<BeginStoryboard>
<Storyboard>
<DoubleAnimation Storyboard.TargetName="Arrow"
Storyboard.TargetProperty="(Path.RenderTransform).(RotateTransform.Angle)"
To="180"
Duration="0:0:0.4"/>
</Storyboard>
</BeginStoryboard>
</Trigger.ExitActions>
</Trigger>
<!-- MouseOver, Pressed behaviours-->
<Trigger Property="IsMouseOver"
Value="true">
<Setter Property="Stroke"
Value="#FF3C7FB1"
TargetName="Circle"/>
<Setter Property="Stroke"
Value="#222"
TargetName="Arrow"/>
</Trigger>
<Trigger Property="IsPressed"
Value="true">
<Setter Property="Stroke"
Value="#FF526C7B"
TargetName="Circle"/>
<Setter Property="StrokeThickness"
Value="1.5"
TargetName="Circle"/>
<Setter Property="Stroke"
Value="#FF003366"
TargetName="Arrow"/>
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>
</Setter.Value>
</Setter>
<Setter Property="ToolTipService.ToolTip" Value="" />
<Setter Property="ToolTipService.ShowOnDisabled" Value="True" />
<EventSetter Event="ToolTipOpening" Handler="ToolTipEventHandler" />
</Style>
<Style TargetType="{x:Type ListViewItem}" x:Key="FlatListViewStyle">
<Setter Property="Margin" Value="0,5"/>
<Setter Property="IsSelected" Value="{Binding Path=IsChecked}" />
<Setter Property="HorizontalContentAlignment" Value="Stretch" />
<Setter Property="VerticalContentAlignment" Value="Top" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type ListViewItem}">
<Grid Background="{TemplateBinding Background}">
<ContentPresenter Margin="15,0"/>
</Grid>
<ControlTemplate.Triggers>
<Trigger Property="IsSelected" Value="False">
<Setter Property="Background" Value="{StaticResource Brush_ItemBackground}" />
<Setter Property="Foreground" Value="{StaticResource Brush_ItemForeground}" />
</Trigger>
<Trigger Property="IsSelected" Value="True">
<Setter Property="Background" Value="{StaticResource Brush_ActionElementBackgroundSelected}" />
<Setter Property="Foreground" Value="{StaticResource Brush_ActionElementForegroundSelected}"/>
</Trigger>
<Trigger Property="IsEnabled" Value="False">
<Setter Property="Foreground" Value="{DynamicResource {x:Static SystemColors.GrayTextBrushKey}}" />
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
<Style x:Key="PageContentRichTextBoxStyle" TargetType="RichTextBox">
<Setter Property="Background" Value="{Binding Background}"/>
<Setter Property="VerticalAlignment" Value="Stretch" />
<Setter Property="VerticalScrollBarVisibility" Value="Visible"/>
<Setter Property="Margin" Value="5,2,5,2" />
<Setter Property="Height" Value="22" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type RichTextBox}">
<Grid Name="Border" Background="{TemplateBinding Background}">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*"/>
<ColumnDefinition Width="Auto"/>
</Grid.ColumnDefinitions>
<Border Grid.Column="0"
Padding="0"
BorderBrush="{StaticResource SolidBorderBrush}"
BorderThickness="0" >
<ScrollViewer Margin="0" x:Name="PART_ContentHost"/>
</Border>
<Path
x:Name="Lock"
Grid.Column="1"
Data="M5.5,3.5730734 C5.152669,3.5730734 4.8814287,3.5981388 4.6862793,3.6482687 C4.4911294,3.6983995 4.3452148,3.780756 4.2485352,3.895339 C4.1518555,4.0099225 4.0918779,4.1612082 4.0686035,4.3491964 C4.0453286,4.5371847 4.0336914,4.7672467 4.0336914,5.039382 L4.0336914,5.8826437 L6.9663086,5.8826437 L6.9663086,5.039382 C6.9663086,4.7672467 6.9555664,4.5371847 6.934082,4.3491964 C6.9125977,4.1612082 6.8544106,4.0099225 6.7595215,3.895339 C6.6646318,3.780756 6.5187173,3.6983995 6.3217773,3.6482687 C6.1248369,3.5981388 5.8509111,3.5730734 5.5,3.5730734 z M5.5,2.461257 C6.0514321,2.461257 6.4945474,2.5266056 6.8293457,2.6573019 C7.1641436,2.7879992 7.4219561,2.9688253 7.6027832,3.1997824 C7.7836099,3.4307399 7.9035645,3.7037706 7.9626465,4.0188742 C8.0217285,4.3339787 8.0512695,4.6741476 8.0512695,5.039382 L8.0512695,5.9094992 C8.1515293,5.9094992 8.248209,5.9291935 8.3413086,5.9685812 C8.4344072,6.0079694 8.5158691,6.0607853 8.5856934,6.1270285 C8.6555176,6.1932721 8.7110186,6.2702579 8.7521973,6.3579855 C8.793375,6.4457135 8.8139648,6.5379171 8.8139648,6.6345968 L8.8139648,10.67903 C8.8139648,10.782871 8.795166,10.879551 8.7575684,10.969069 C8.7199707,11.058588 8.6671543,11.138259 8.5991211,11.208083 C8.5310869,11.277907 8.4523106,11.332514 8.362793,11.371902 C8.2732744,11.411289 8.1783848,11.430984 8.078125,11.430984 L2.9379883,11.430984 C2.834147,11.430984 2.7365723,11.411289 2.6452637,11.371902 C2.5539551,11.332514 2.4742837,11.277907 2.40625,11.208083 C2.3382161,11.138259 2.2845051,11.058588 2.2451172,10.969069 C2.205729,10.879551 2.1860352,10.782871 2.1860352,10.67903 L2.1860352,6.6345968 C2.1860352,6.5379171 2.2066243,6.4457135 2.2478027,6.3579855 C2.288981,6.2702579 2.3444824,6.1932721 2.4143066,6.1270285 C2.4841309,6.0607853 2.563802,6.0079694 2.6533203,5.9685812 C2.7428384,5.9291935 2.8377278,5.9094992 2.9379883,5.9094992 L2.9379883,5.039382 C2.9379883,4.6741476 2.9684243,4.3339787 3.0292969,4.0188742 C3.0901692,3.7037706 3.2128091,3.4307399 3.3972168,3.1997824 C3.581624,2.9688253 3.8412271,2.7879992 4.1760254,2.6573019 C4.5108232,2.5266056 4.9521484,2.461257 5.5,2.461257 z"
HorizontalAlignment="Center"
Height="8.97" Margin="5" Stretch="Fill"
VerticalAlignment="Center"
Fill="{StaticResource Brush_FlatControlDisabledForeground}"
Width="6.628"/>
</Grid>
<ControlTemplate.Triggers>
<Trigger Property="IsEnabled" Value="True">
<Setter TargetName="Lock" Property="Visibility" Value="Collapsed"/>
<Setter TargetName="Border" Property="Background" Value="{StaticResource Brush_FlatControlWindowBackground}"/>
<Setter Property="Foreground" Value="{StaticResource Brush_FlatControlForeground}"/>
</Trigger>
<Trigger Property="IsMouseOver" Value="True">
<Setter TargetName="Lock" Property="Visibility" Value="Collapsed"/>
<Setter TargetName="Border" Property="Background" Value="{StaticResource Brush_FlatControlMouseOverBackground}"/>
<Setter Property="Foreground" Value="{StaticResource Brush_FlatControlMouseOverForeground}"/>
</Trigger>
<Trigger Property="IsEnabled" Value="False">
<Setter TargetName="Lock" Property="Visibility" Value="Visible"/>
<Setter TargetName="Border" Property="Background" Value="{StaticResource Brush_FlatControlDisabledBackground}"/>
<Setter Property="Foreground" Value="{StaticResource Brush_FlatControlDisabledForeground}"/>
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>
</Setter.Value>
</Setter>
<Setter Property="ToolTipService.ToolTip" Value="" />
<Setter Property="ToolTipService.ShowOnDisabled" Value="True" />
<EventSetter Event="ToolTipOpening" Handler="ToolTipEventHandler" />
</Style>
<Style x:Key="PageContentCheckBoxStyle" TargetType="CheckBox" BasedOn="{StaticResource FlatCheckBoxStyle}">
<Setter Property="HorizontalAlignment" Value="Left" />
<Setter Property="VerticalAlignment" Value="Center" />
<Setter Property="Margin" Value="5,2,5,2" />
<Setter Property="BorderThickness" Value="0" />
</Style>
<Style x:Key="PageContentRadioButtonStyle" TargetType="RadioButton" BasedOn="{StaticResource FlatRadioButtonStyle}">
<Setter Property="HorizontalAlignment" Value="Left" />
<Setter Property="VerticalAlignment" Value="Center" />
<Setter Property="Margin" Value="5,2,5,2" />
<Setter Property="BorderThickness" Value="0" />
</Style>
<Style x:Key="{x:Type TabItem}" TargetType="TabItem" >
<Setter Property="ToolTipService.ToolTip" Value="" />
<Setter Property="ToolTipService.ShowOnDisabled" Value="True" />
<EventSetter Event="ToolTipOpening" Handler="ToolTipEventHandler" />
</Style>
</ResourceDictionary>