288 lines
15 KiB
XML
288 lines
15 KiB
XML
<ResourceDictionary
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:controls="clr-namespace:WPFluent.Controls"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
|
|
|
<Style TargetType="{x:Type ButtonBase}" x:Key="ToolBarButtonBaseStyle">
|
|
<Setter Property="Background">
|
|
<Setter.Value>
|
|
<SolidColorBrush Color="{DynamicResource ControlFillColorDefault}" Opacity="0.0" />
|
|
</Setter.Value>
|
|
</Setter>
|
|
<Setter Property="BorderBrush" Value="Transparent" />
|
|
<Setter Property="BorderThickness" Value="0" />
|
|
<Setter Property="Cursor" Value="Hand" />
|
|
<Setter Property="SnapsToDevicePixels" Value="True" />
|
|
<Setter Property="OverridesDefaultStyle" Value="True" />
|
|
<Setter Property="Template">
|
|
<Setter.Value>
|
|
<ControlTemplate TargetType="{x:Type ButtonBase}">
|
|
<Border
|
|
Background="{TemplateBinding Background}"
|
|
BorderBrush="{TemplateBinding BorderBrush}"
|
|
BorderThickness="{TemplateBinding BorderThickness}"
|
|
Padding="12,6"
|
|
x:Name="Border">
|
|
<ContentPresenter
|
|
HorizontalAlignment="Center"
|
|
Margin="2"
|
|
RecognizesAccessKey="True"
|
|
VerticalAlignment="Center" />
|
|
</Border>
|
|
<ControlTemplate.Triggers>
|
|
<Trigger Property="IsMouseOver" Value="True">
|
|
<Trigger.EnterActions>
|
|
<BeginStoryboard>
|
|
<Storyboard>
|
|
<DoubleAnimation
|
|
Duration="0:0:0.16"
|
|
From="0.0"
|
|
Storyboard.TargetName="Border"
|
|
Storyboard.TargetProperty="(Border.Background).(SolidColorBrush.Opacity)"
|
|
To="1.0" />
|
|
</Storyboard>
|
|
</BeginStoryboard>
|
|
</Trigger.EnterActions>
|
|
<Trigger.ExitActions>
|
|
<BeginStoryboard>
|
|
<Storyboard>
|
|
<DoubleAnimation
|
|
Duration="0:0:0.16"
|
|
From="1.0"
|
|
Storyboard.TargetName="Border"
|
|
Storyboard.TargetProperty="(Border.Background).(SolidColorBrush.Opacity)"
|
|
To="0.0" />
|
|
</Storyboard>
|
|
</BeginStoryboard>
|
|
</Trigger.ExitActions>
|
|
</Trigger>
|
|
</ControlTemplate.Triggers>
|
|
</ControlTemplate>
|
|
</Setter.Value>
|
|
</Setter>
|
|
</Style>
|
|
|
|
<Style
|
|
BasedOn="{StaticResource ToolBarButtonBaseStyle}"
|
|
TargetType="{x:Type Button}"
|
|
x:Key="{x:Static ToolBar.ButtonStyleKey}" />
|
|
<Style
|
|
BasedOn="{StaticResource ToolBarButtonBaseStyle}"
|
|
TargetType="{x:Type ToggleButton}"
|
|
x:Key="{x:Static ToolBar.ToggleButtonStyleKey}" />
|
|
<Style
|
|
BasedOn="{StaticResource ToolBarButtonBaseStyle}"
|
|
TargetType="{x:Type CheckBox}"
|
|
x:Key="{x:Static ToolBar.CheckBoxStyleKey}" />
|
|
<Style
|
|
BasedOn="{StaticResource ToolBarButtonBaseStyle}"
|
|
TargetType="{x:Type RadioButton}"
|
|
x:Key="{x:Static ToolBar.RadioButtonStyleKey}" />
|
|
|
|
<Style TargetType="{x:Type TextBox}" x:Key="{x:Static ToolBar.TextBoxStyleKey}">
|
|
<Setter Property="KeyboardNavigation.TabNavigation" Value="None" />
|
|
<Setter Property="FocusVisualStyle" Value="{x:Null}" />
|
|
<Setter Property="AllowDrop" Value="True" />
|
|
<Setter Property="SnapsToDevicePixels" Value="True" />
|
|
<Setter Property="OverridesDefaultStyle" Value="True" />
|
|
<Setter Property="Template">
|
|
<Setter.Value>
|
|
<ControlTemplate TargetType="{x:Type TextBox}">
|
|
<Border
|
|
Background="Transparent"
|
|
BorderBrush="Transparent"
|
|
BorderThickness="0"
|
|
Padding="2"
|
|
x:Name="Border">
|
|
<controls:PassiveScrollViewer Margin="0" x:Name="PART_ContentHost" />
|
|
</Border>
|
|
</ControlTemplate>
|
|
</Setter.Value>
|
|
</Setter>
|
|
</Style>
|
|
|
|
<Style TargetType="{x:Type Thumb}" x:Key="ToolBarThumbStyle">
|
|
<Setter Property="SnapsToDevicePixels" Value="True" />
|
|
<Setter Property="OverridesDefaultStyle" Value="True" />
|
|
<Setter Property="Cursor" Value="SizeAll" />
|
|
<Setter Property="Template">
|
|
<Setter.Value>
|
|
<ControlTemplate TargetType="{x:Type Thumb}">
|
|
<Border Background="Transparent" SnapsToDevicePixels="True">
|
|
<Rectangle Margin="0,2">
|
|
<Rectangle.Fill>
|
|
<DrawingBrush
|
|
TileMode="Tile"
|
|
Viewbox="0,0,8,8"
|
|
ViewboxUnits="Absolute"
|
|
Viewport="0,0,4,4"
|
|
ViewportUnits="Absolute">
|
|
<DrawingBrush.Drawing>
|
|
<DrawingGroup>
|
|
<GeometryDrawing Brush="#AAA" Geometry="M 4 4 L 4 8 L 8 8 L 8 4 z" />
|
|
</DrawingGroup>
|
|
</DrawingBrush.Drawing>
|
|
</DrawingBrush>
|
|
</Rectangle.Fill>
|
|
</Rectangle>
|
|
</Border>
|
|
</ControlTemplate>
|
|
</Setter.Value>
|
|
</Setter>
|
|
</Style>
|
|
|
|
<Style TargetType="{x:Type ToggleButton}" x:Key="ToolBarOverflowButtonStyle">
|
|
<Setter Property="Foreground">
|
|
<Setter.Value>
|
|
<SolidColorBrush Color="{DynamicResource TextFillColorTertiary}" />
|
|
</Setter.Value>
|
|
</Setter>
|
|
<Setter Property="Background" Value="Transparent" />
|
|
<Setter Property="Cursor" Value="Hand" />
|
|
<Setter Property="SnapsToDevicePixels" Value="True" />
|
|
<Setter Property="OverridesDefaultStyle" Value="True" />
|
|
<Setter Property="Template">
|
|
<Setter.Value>
|
|
<ControlTemplate TargetType="{x:Type ToggleButton}">
|
|
<Border
|
|
Background="{TemplateBinding Background}"
|
|
CornerRadius="0,3,3,0"
|
|
SnapsToDevicePixels="true"
|
|
x:Name="Border">
|
|
<Grid>
|
|
<controls:SymbolIcon
|
|
Foreground="{TemplateBinding Foreground}"
|
|
Margin="0"
|
|
Symbol="ChevronDown20"
|
|
VerticalAlignment="Bottom" />
|
|
<ContentPresenter />
|
|
</Grid>
|
|
<!--
|
|
<VisualStateManager.VisualStateGroups>
|
|
<VisualStateGroup x:Name="CommonStates">
|
|
<VisualState x:Name="Normal" />
|
|
<VisualState x:Name="Pressed">
|
|
<Storyboard>
|
|
<ColorAnimationUsingKeyFrames Storyboard.TargetName="Border" Storyboard.TargetProperty="(Panel.Background). (GradientBrush.GradientStops)[1].(GradientStop.Color)">
|
|
<EasingColorKeyFrame KeyTime="0" Value="{StaticResource ControlPressedColor}" />
|
|
</ColorAnimationUsingKeyFrames>
|
|
</Storyboard>
|
|
</VisualState>
|
|
<VisualState x:Name="MouseOver">
|
|
<Storyboard>
|
|
<ColorAnimationUsingKeyFrames Storyboard.TargetName="Border" Storyboard.TargetProperty="(Panel.Background). (GradientBrush.GradientStops)[1].(GradientStop.Color)">
|
|
<EasingColorKeyFrame KeyTime="0" Value="{StaticResource ControlMouseOverColor}" />
|
|
</ColorAnimationUsingKeyFrames>
|
|
</Storyboard>
|
|
</VisualState>
|
|
<VisualState x:Name="Disabled">
|
|
<Storyboard>
|
|
<ColorAnimationUsingKeyFrames Storyboard.TargetName="Border" Storyboard.TargetProperty="(Panel.Background). (GradientBrush.GradientStops)[1].(GradientStop.Color)">
|
|
<EasingColorKeyFrame KeyTime="0" Value="{StaticResource DisabledBorderLightColor}" />
|
|
</ColorAnimationUsingKeyFrames>
|
|
</Storyboard>
|
|
</VisualState>
|
|
</VisualStateGroup>
|
|
</VisualStateManager.VisualStateGroups>
|
|
-->
|
|
</Border>
|
|
<ControlTemplate.Triggers>
|
|
|
|
<Trigger Property="IsEnabled" Value="False">
|
|
<Setter Property="Width" Value="0" />
|
|
</Trigger>
|
|
|
|
</ControlTemplate.Triggers>
|
|
</ControlTemplate>
|
|
</Setter.Value>
|
|
</Setter>
|
|
</Style>
|
|
|
|
<Style TargetType="{x:Type ToolBar}" x:Key="{x:Type ToolBar}">
|
|
<Setter Property="Background" Value="Transparent" />
|
|
<Setter Property="BorderBrush" Value="Transparent" />
|
|
<Setter Property="BorderThickness" Value="0" />
|
|
<Setter Property="SnapsToDevicePixels" Value="True" />
|
|
<Setter Property="OverridesDefaultStyle" Value="True" />
|
|
<Setter Property="Template">
|
|
<Setter.Value>
|
|
<ControlTemplate TargetType="{x:Type ToolBar}">
|
|
<Border
|
|
Background="{TemplateBinding Background}"
|
|
BorderBrush="{TemplateBinding BorderBrush}"
|
|
BorderThickness="{TemplateBinding BorderThickness}"
|
|
CornerRadius="4"
|
|
x:Name="Border">
|
|
<DockPanel>
|
|
<ToggleButton
|
|
ClickMode="Press"
|
|
DockPanel.Dock="Right"
|
|
IsChecked="{Binding IsOverflowOpen, Mode=TwoWay, RelativeSource={RelativeSource TemplatedParent}}"
|
|
IsEnabled="{TemplateBinding HasOverflowItems}"
|
|
Style="{StaticResource ToolBarOverflowButtonStyle}">
|
|
<Popup
|
|
AllowsTransparency="True"
|
|
Focusable="False"
|
|
IsOpen="{Binding IsOverflowOpen, RelativeSource={RelativeSource TemplatedParent}}"
|
|
Placement="Bottom"
|
|
PopupAnimation="Slide"
|
|
StaysOpen="False"
|
|
x:Name="OverflowPopup">
|
|
<Border
|
|
BorderBrush="{DynamicResource MenuBorderColorDefaultBrush}"
|
|
BorderThickness="1"
|
|
CornerRadius="8"
|
|
Margin="12,0,12,18"
|
|
Padding="0,3,0,3"
|
|
SnapsToDevicePixels="True"
|
|
x:Name="DropDownBorder">
|
|
<Border.Background>
|
|
<SolidColorBrush Color="{DynamicResource SystemFillColorSolidNeutralBackground}" />
|
|
</Border.Background>
|
|
|
|
<ToolBarOverflowPanel
|
|
FocusVisualStyle="{x:Null}"
|
|
Focusable="True"
|
|
KeyboardNavigation.DirectionalNavigation="Cycle"
|
|
KeyboardNavigation.TabNavigation="Cycle"
|
|
Margin="0"
|
|
WrapWidth="200"
|
|
x:Name="PART_ToolBarOverflowPanel" />
|
|
</Border>
|
|
</Popup>
|
|
</ToggleButton>
|
|
|
|
<Thumb
|
|
Style="{StaticResource ToolBarThumbStyle}"
|
|
Width="10"
|
|
x:Name="ToolBarThumb" />
|
|
<ToolBarPanel
|
|
IsItemsHost="True"
|
|
Margin="0,1,2,2"
|
|
x:Name="PART_ToolBarPanel" />
|
|
</DockPanel>
|
|
</Border>
|
|
<ControlTemplate.Triggers>
|
|
<Trigger Property="IsOverflowOpen" Value="true">
|
|
<Setter Property="IsEnabled" TargetName="ToolBarThumb" Value="false" />
|
|
</Trigger>
|
|
<Trigger Property="ToolBarTray.IsLocked" Value="true">
|
|
<Setter Property="Visibility" TargetName="ToolBarThumb" Value="Collapsed" />
|
|
</Trigger>
|
|
</ControlTemplate.Triggers>
|
|
</ControlTemplate>
|
|
</Setter.Value>
|
|
</Setter>
|
|
</Style>
|
|
|
|
<Style TargetType="{x:Type ToolBarTray}" x:Key="{x:Type ToolBarTray}">
|
|
<Setter Property="Background">
|
|
<Setter.Value>
|
|
<SolidColorBrush Color="{DynamicResource ControlFillColorDefault}" />
|
|
</Setter.Value>
|
|
</Setter>
|
|
<Setter Property="Margin" Value="0" />
|
|
</Style>
|
|
|
|
</ResourceDictionary>
|