mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-03 17:56:44 +02:00
105 lines
6.2 KiB
Plaintext
105 lines
6.2 KiB
Plaintext
|
|
<!-- Copyright (c) Microsoft Corporation and Contributors. -->
|
||
|
|
<!-- Licensed under the MIT License. -->
|
||
|
|
|
||
|
|
<ResourceDictionary
|
||
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||
|
|
xmlns:local="using:Microsoft.PowerToys.Settings.UI.Controls">
|
||
|
|
|
||
|
|
<Style BasedOn="{StaticResource DefaultFlyoutMenuButtonStyle}" TargetType="local:FlyoutMenuButton" />
|
||
|
|
|
||
|
|
<Style x:Key="DefaultFlyoutMenuButtonStyle" TargetType="local:FlyoutMenuButton">
|
||
|
|
<Setter Property="HorizontalAlignment" Value="Stretch" />
|
||
|
|
<Setter Property="VerticalAlignment" Value="Stretch" />
|
||
|
|
<Setter Property="Width" Value="116" />
|
||
|
|
<Setter Property="Height" Value="84" />
|
||
|
|
<Setter Property="FontFamily" Value="{ThemeResource ContentControlThemeFontFamily}" />
|
||
|
|
<Setter Property="FontWeight" Value="Normal" />
|
||
|
|
<Setter Property="FontSize" Value="{ThemeResource ControlContentThemeFontSize}" />
|
||
|
|
<Setter Property="UseSystemFocusVisuals" Value="{StaticResource UseSystemFocusVisuals}" />
|
||
|
|
<Setter Property="FocusVisualMargin" Value="-3" />
|
||
|
|
<Setter Property="CornerRadius" Value="{ThemeResource ControlCornerRadius}" />
|
||
|
|
<Setter Property="Template">
|
||
|
|
<Setter.Value>
|
||
|
|
<ControlTemplate TargetType="local:FlyoutMenuButton">
|
||
|
|
<Grid
|
||
|
|
x:Name="RootGrid"
|
||
|
|
Width="{TemplateBinding Width}"
|
||
|
|
Height="{TemplateBinding Height}"
|
||
|
|
HorizontalAlignment="Stretch"
|
||
|
|
VerticalAlignment="Stretch"
|
||
|
|
Background="Transparent"
|
||
|
|
BackgroundSizing="InnerBorderEdge"
|
||
|
|
CornerRadius="{TemplateBinding CornerRadius}">
|
||
|
|
<Grid.BackgroundTransition>
|
||
|
|
<BrushTransition Duration="0:0:0.083" />
|
||
|
|
</Grid.BackgroundTransition>
|
||
|
|
<ContentPresenter
|
||
|
|
x:Name="ContentPresenter"
|
||
|
|
Margin="0,52,0,0"
|
||
|
|
HorizontalAlignment="Center"
|
||
|
|
VerticalAlignment="Top"
|
||
|
|
Content="{TemplateBinding Content}" />
|
||
|
|
|
||
|
|
|
||
|
|
<ContentPresenter
|
||
|
|
x:Name="IconPresenter"
|
||
|
|
Width="32"
|
||
|
|
Margin="0,12,0,0"
|
||
|
|
HorizontalAlignment="Center"
|
||
|
|
VerticalAlignment="Top"
|
||
|
|
Content="{TemplateBinding Icon}"
|
||
|
|
RenderTransformOrigin="0.5, 0.5">
|
||
|
|
<ContentPresenter.RenderTransform>
|
||
|
|
<CompositeTransform />
|
||
|
|
</ContentPresenter.RenderTransform>
|
||
|
|
</ContentPresenter>
|
||
|
|
<VisualStateManager.VisualStateGroups>
|
||
|
|
<VisualStateGroup x:Name="CommonStates">
|
||
|
|
<VisualState x:Name="Normal" />
|
||
|
|
<VisualState x:Name="PointerOver">
|
||
|
|
<Storyboard>
|
||
|
|
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="RootGrid" Storyboard.TargetProperty="Background">
|
||
|
|
<DiscreteObjectKeyFrame KeyTime="0" Value="{ThemeResource ControlFillColorDefaultBrush}" />
|
||
|
|
</ObjectAnimationUsingKeyFrames>
|
||
|
|
</Storyboard>
|
||
|
|
</VisualState>
|
||
|
|
|
||
|
|
<VisualState x:Name="Pressed">
|
||
|
|
<Storyboard>
|
||
|
|
<DoubleAnimationUsingKeyFrames Storyboard.TargetName="IconPresenter" Storyboard.TargetProperty="(UIElement.RenderTransform).(CompositeTransform.ScaleX)">
|
||
|
|
<SplineDoubleKeyFrame
|
||
|
|
KeySpline="{StaticResource ControlFastOutSlowInKeySpline}"
|
||
|
|
KeyTime="{StaticResource ControlFastAnimationDuration}"
|
||
|
|
Value="0.86" />
|
||
|
|
</DoubleAnimationUsingKeyFrames>
|
||
|
|
<DoubleAnimationUsingKeyFrames Storyboard.TargetName="IconPresenter" Storyboard.TargetProperty="(UIElement.RenderTransform).(CompositeTransform.ScaleY)">
|
||
|
|
<SplineDoubleKeyFrame
|
||
|
|
KeySpline="{StaticResource ControlFastOutSlowInKeySpline}"
|
||
|
|
KeyTime="{StaticResource ControlFastAnimationDuration}"
|
||
|
|
Value="0.86" />
|
||
|
|
</DoubleAnimationUsingKeyFrames>
|
||
|
|
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="RootGrid" Storyboard.TargetProperty="Background">
|
||
|
|
<DiscreteObjectKeyFrame KeyTime="0" Value="{ThemeResource ControlFillColorDefaultBrush}" />
|
||
|
|
</ObjectAnimationUsingKeyFrames>
|
||
|
|
</Storyboard>
|
||
|
|
|
||
|
|
</VisualState>
|
||
|
|
|
||
|
|
<VisualState x:Name="Disabled">
|
||
|
|
<Storyboard>
|
||
|
|
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="ContentPresenter" Storyboard.TargetProperty="Foreground">
|
||
|
|
<DiscreteObjectKeyFrame KeyTime="0" Value="{ThemeResource ButtonForegroundDisabled}" />
|
||
|
|
</ObjectAnimationUsingKeyFrames>
|
||
|
|
</Storyboard>
|
||
|
|
|
||
|
|
</VisualState>
|
||
|
|
</VisualStateGroup>
|
||
|
|
</VisualStateManager.VisualStateGroups>
|
||
|
|
</Grid>
|
||
|
|
</ControlTemplate>
|
||
|
|
</Setter.Value>
|
||
|
|
</Setter>
|
||
|
|
</Style>
|
||
|
|
</ResourceDictionary>
|