mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-04 18:26:39 +02:00
280 lines
23 KiB
Plaintext
280 lines
23 KiB
Plaintext
|
|
<?xml version="1.0" encoding="utf-8" ?>
|
||
|
|
<ResourceDictionary
|
||
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||
|
|
xmlns:converters="using:CommunityToolkit.WinUI.Converters">
|
||
|
|
|
||
|
|
<ResourceDictionary.MergedDictionaries>
|
||
|
|
<XamlControlsResources xmlns="using:Microsoft.UI.Xaml.Controls" />
|
||
|
|
<!-- Other merged dictionaries here -->
|
||
|
|
</ResourceDictionary.MergedDictionaries>
|
||
|
|
|
||
|
|
<converters:StringVisibilityConverter
|
||
|
|
x:Key="ReverseStringVisibilityConverter"
|
||
|
|
EmptyValue="Visible"
|
||
|
|
NotEmptyValue="Collapsed" />
|
||
|
|
|
||
|
|
<Style x:Key="SearchTextBoxStyle" TargetType="TextBox">
|
||
|
|
<Setter Property="Foreground" Value="{ThemeResource TextControlForeground}" />
|
||
|
|
<Setter Property="Background" Value="Transparent" />
|
||
|
|
<Setter Property="BorderBrush" Value="Transparent" />
|
||
|
|
<Setter Property="SelectionHighlightColor" Value="{ThemeResource TextControlSelectionHighlightColor}" />
|
||
|
|
<Setter Property="BorderThickness" Value="0" />
|
||
|
|
<Setter Property="FontFamily" Value="{ThemeResource ContentControlThemeFontFamily}" />
|
||
|
|
<Setter Property="FontSize" Value="{ThemeResource ControlContentThemeFontSize}" />
|
||
|
|
<Setter Property="ScrollViewer.HorizontalScrollMode" Value="Auto" />
|
||
|
|
<Setter Property="ScrollViewer.VerticalScrollMode" Value="Auto" />
|
||
|
|
<Setter Property="ScrollViewer.HorizontalScrollBarVisibility" Value="Hidden" />
|
||
|
|
<Setter Property="ScrollViewer.VerticalScrollBarVisibility" Value="Hidden" />
|
||
|
|
<Setter Property="ScrollViewer.IsDeferredScrollingEnabled" Value="False" />
|
||
|
|
<Setter Property="MinHeight" Value="{ThemeResource TextControlThemeMinHeight}" />
|
||
|
|
<Setter Property="MinWidth" Value="{ThemeResource TextControlThemeMinWidth}" />
|
||
|
|
<Setter Property="Padding" Value="{ThemeResource TextControlThemePadding}" />
|
||
|
|
<Setter Property="UseSystemFocusVisuals" Value="{ThemeResource IsApplicationFocusVisualKindReveal}" />
|
||
|
|
<Setter Property="ContextFlyout" Value="{StaticResource TextControlCommandBarContextFlyout}" />
|
||
|
|
<Setter Property="SelectionFlyout" Value="{StaticResource TextControlCommandBarSelectionFlyout}" />
|
||
|
|
<Setter Property="CornerRadius" Value="{ThemeResource ControlCornerRadius}" />
|
||
|
|
<Setter Property="BackgroundSizing" Value="InnerBorderEdge" />
|
||
|
|
<Setter Property="Template">
|
||
|
|
<Setter.Value>
|
||
|
|
<ControlTemplate TargetType="TextBox">
|
||
|
|
<Grid>
|
||
|
|
<Grid.Resources>
|
||
|
|
<Style x:Name="DeleteButtonStyle" TargetType="Button">
|
||
|
|
<Setter Property="Template">
|
||
|
|
<Setter.Value>
|
||
|
|
<ControlTemplate TargetType="Button">
|
||
|
|
<Grid
|
||
|
|
x:Name="ButtonLayoutGrid"
|
||
|
|
Margin="{ThemeResource TextBoxInnerButtonMargin}"
|
||
|
|
Background="{ThemeResource TextControlButtonBackground}"
|
||
|
|
BackgroundSizing="{TemplateBinding BackgroundSizing}"
|
||
|
|
BorderBrush="{ThemeResource TextControlButtonBorderBrush}"
|
||
|
|
BorderThickness="{TemplateBinding BorderThickness}"
|
||
|
|
CornerRadius="{TemplateBinding CornerRadius}">
|
||
|
|
<TextBlock
|
||
|
|
x:Name="GlyphElement"
|
||
|
|
Margin="{TemplateBinding Padding}"
|
||
|
|
HorizontalAlignment="Center"
|
||
|
|
VerticalAlignment="Center"
|
||
|
|
AutomationProperties.AccessibilityView="Raw"
|
||
|
|
FontFamily="{ThemeResource SymbolThemeFontFamily}"
|
||
|
|
FontSize="{ThemeResource TextBoxIconFontSize}"
|
||
|
|
FontStyle="Normal"
|
||
|
|
Foreground="{ThemeResource TextControlButtonForeground}"
|
||
|
|
Text="" />
|
||
|
|
<VisualStateManager.VisualStateGroups>
|
||
|
|
<VisualStateGroup x:Name="CommonStates">
|
||
|
|
<VisualState x:Name="Normal" />
|
||
|
|
<VisualState x:Name="PointerOver">
|
||
|
|
<Storyboard>
|
||
|
|
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="ButtonLayoutGrid" Storyboard.TargetProperty="Background">
|
||
|
|
<DiscreteObjectKeyFrame KeyTime="0" Value="{ThemeResource TextControlButtonBackgroundPointerOver}" />
|
||
|
|
</ObjectAnimationUsingKeyFrames>
|
||
|
|
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="ButtonLayoutGrid" Storyboard.TargetProperty="BorderBrush">
|
||
|
|
<DiscreteObjectKeyFrame KeyTime="0" Value="{ThemeResource TextControlButtonBorderBrushPointerOver}" />
|
||
|
|
</ObjectAnimationUsingKeyFrames>
|
||
|
|
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="GlyphElement" Storyboard.TargetProperty="Foreground">
|
||
|
|
<DiscreteObjectKeyFrame KeyTime="0" Value="{ThemeResource TextControlButtonForegroundPointerOver}" />
|
||
|
|
</ObjectAnimationUsingKeyFrames>
|
||
|
|
</Storyboard>
|
||
|
|
</VisualState>
|
||
|
|
<VisualState x:Name="Pressed">
|
||
|
|
<Storyboard>
|
||
|
|
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="ButtonLayoutGrid" Storyboard.TargetProperty="Background">
|
||
|
|
<DiscreteObjectKeyFrame KeyTime="0" Value="{ThemeResource TextControlButtonBackgroundPressed}" />
|
||
|
|
</ObjectAnimationUsingKeyFrames>
|
||
|
|
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="ButtonLayoutGrid" Storyboard.TargetProperty="BorderBrush">
|
||
|
|
<DiscreteObjectKeyFrame KeyTime="0" Value="{ThemeResource TextControlButtonBorderBrushPressed}" />
|
||
|
|
</ObjectAnimationUsingKeyFrames>
|
||
|
|
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="GlyphElement" Storyboard.TargetProperty="Foreground">
|
||
|
|
<DiscreteObjectKeyFrame KeyTime="0" Value="{ThemeResource TextControlButtonForegroundPressed}" />
|
||
|
|
</ObjectAnimationUsingKeyFrames>
|
||
|
|
</Storyboard>
|
||
|
|
</VisualState>
|
||
|
|
<VisualState x:Name="Disabled">
|
||
|
|
<Storyboard>
|
||
|
|
<DoubleAnimation
|
||
|
|
Storyboard.TargetName="ButtonLayoutGrid"
|
||
|
|
Storyboard.TargetProperty="Opacity"
|
||
|
|
To="0"
|
||
|
|
Duration="0" />
|
||
|
|
</Storyboard>
|
||
|
|
</VisualState>
|
||
|
|
</VisualStateGroup>
|
||
|
|
</VisualStateManager.VisualStateGroups>
|
||
|
|
</Grid>
|
||
|
|
</ControlTemplate>
|
||
|
|
</Setter.Value>
|
||
|
|
</Setter>
|
||
|
|
</Style>
|
||
|
|
</Grid.Resources>
|
||
|
|
<Grid.ColumnDefinitions>
|
||
|
|
<ColumnDefinition Width="Auto" />
|
||
|
|
<ColumnDefinition Width="*" />
|
||
|
|
<ColumnDefinition Width="Auto" />
|
||
|
|
</Grid.ColumnDefinitions>
|
||
|
|
<ContentPresenter
|
||
|
|
x:Name="HeaderContentPresenter"
|
||
|
|
Margin="{ThemeResource TextBoxTopHeaderMargin}"
|
||
|
|
VerticalAlignment="Center"
|
||
|
|
x:DeferLoadStrategy="Lazy"
|
||
|
|
Content="{TemplateBinding Header}"
|
||
|
|
ContentTemplate="{TemplateBinding HeaderTemplate}"
|
||
|
|
FontWeight="Normal"
|
||
|
|
Foreground="{ThemeResource TextControlHeaderForeground}"
|
||
|
|
TextWrapping="Wrap"
|
||
|
|
Visibility="Collapsed" />
|
||
|
|
<Border
|
||
|
|
x:Name="BorderElement"
|
||
|
|
Grid.Column="1"
|
||
|
|
Grid.ColumnSpan="2"
|
||
|
|
MinWidth="{TemplateBinding MinWidth}"
|
||
|
|
MinHeight="{TemplateBinding MinHeight}"
|
||
|
|
Background="{TemplateBinding Background}"
|
||
|
|
BorderBrush="{TemplateBinding BorderBrush}"
|
||
|
|
BorderThickness="{TemplateBinding BorderThickness}"
|
||
|
|
Control.IsTemplateFocusTarget="True"
|
||
|
|
CornerRadius="{TemplateBinding CornerRadius}" />
|
||
|
|
<ScrollViewer
|
||
|
|
x:Name="ContentElement"
|
||
|
|
Grid.Column="1"
|
||
|
|
Margin="{TemplateBinding BorderThickness}"
|
||
|
|
Padding="{TemplateBinding Padding}"
|
||
|
|
AutomationProperties.AccessibilityView="Raw"
|
||
|
|
Foreground="{TemplateBinding Foreground}"
|
||
|
|
HorizontalScrollBarVisibility="{TemplateBinding ScrollViewer.HorizontalScrollBarVisibility}"
|
||
|
|
HorizontalScrollMode="{TemplateBinding ScrollViewer.HorizontalScrollMode}"
|
||
|
|
IsDeferredScrollingEnabled="{TemplateBinding ScrollViewer.IsDeferredScrollingEnabled}"
|
||
|
|
IsHorizontalRailEnabled="{TemplateBinding ScrollViewer.IsHorizontalRailEnabled}"
|
||
|
|
IsTabStop="False"
|
||
|
|
IsVerticalRailEnabled="{TemplateBinding ScrollViewer.IsVerticalRailEnabled}"
|
||
|
|
VerticalScrollBarVisibility="{TemplateBinding ScrollViewer.VerticalScrollBarVisibility}"
|
||
|
|
VerticalScrollMode="{TemplateBinding ScrollViewer.VerticalScrollMode}"
|
||
|
|
ZoomMode="Disabled" />
|
||
|
|
<TextBlock
|
||
|
|
x:Name="PlaceholderTextContentPresenter"
|
||
|
|
Grid.Column="1"
|
||
|
|
Grid.ColumnSpan="1"
|
||
|
|
Margin="{TemplateBinding BorderThickness}"
|
||
|
|
Padding="{TemplateBinding Padding}"
|
||
|
|
Foreground="{Binding PlaceholderForeground, RelativeSource={RelativeSource TemplatedParent}, TargetNullValue={ThemeResource TextControlPlaceholderForeground}}"
|
||
|
|
IsHitTestVisible="False"
|
||
|
|
Text="{TemplateBinding PlaceholderText}"
|
||
|
|
TextAlignment="{TemplateBinding TextAlignment}"
|
||
|
|
TextWrapping="{TemplateBinding TextWrapping}"
|
||
|
|
Visibility="{Binding Description, RelativeSource={RelativeSource TemplatedParent}, Converter={StaticResource ReverseStringVisibilityConverter}, Mode=OneWay}" />
|
||
|
|
<Button
|
||
|
|
x:Name="DeleteButton"
|
||
|
|
Grid.Column="2"
|
||
|
|
Margin="0,0,8,0"
|
||
|
|
Padding="4"
|
||
|
|
HorizontalAlignment="Right"
|
||
|
|
VerticalAlignment="Center"
|
||
|
|
AutomationProperties.AccessibilityView="Raw"
|
||
|
|
BorderThickness="{TemplateBinding BorderThickness}"
|
||
|
|
CornerRadius="{TemplateBinding CornerRadius}"
|
||
|
|
FontSize="{TemplateBinding FontSize}"
|
||
|
|
IsTabStop="False"
|
||
|
|
Style="{StaticResource DeleteButtonStyle}"
|
||
|
|
Visibility="Collapsed" />
|
||
|
|
<TextBlock
|
||
|
|
x:Name="DescriptionPresenter"
|
||
|
|
Grid.Column="1"
|
||
|
|
Margin="{TemplateBinding BorderThickness}"
|
||
|
|
Padding="{TemplateBinding Padding}"
|
||
|
|
x:Load="False"
|
||
|
|
AutomationProperties.AccessibilityView="Raw"
|
||
|
|
CharacterSpacing="15"
|
||
|
|
Foreground="{Binding PlaceholderForeground, RelativeSource={RelativeSource TemplatedParent}, TargetNullValue={ThemeResource TextControlPlaceholderForeground}}"
|
||
|
|
Text="{TemplateBinding Description}"
|
||
|
|
TextWrapping="{TemplateBinding TextWrapping}" />
|
||
|
|
<VisualStateManager.VisualStateGroups>
|
||
|
|
<VisualStateGroup x:Name="CommonStates">
|
||
|
|
<VisualState x:Name="Normal" />
|
||
|
|
<VisualState x:Name="Disabled">
|
||
|
|
<Storyboard>
|
||
|
|
<!--<ObjectAnimationUsingKeyFrames Storyboard.TargetName="HeaderContentPresenter" Storyboard.TargetProperty="Foreground">
|
||
|
|
<DiscreteObjectKeyFrame KeyTime="0" Value="{ThemeResource TextControlHeaderForegroundDisabled}" />
|
||
|
|
</ObjectAnimationUsingKeyFrames>
|
||
|
|
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="BorderElement" Storyboard.TargetProperty="Background">
|
||
|
|
<DiscreteObjectKeyFrame KeyTime="0" Value="{ThemeResource TextControlBackgroundDisabled}" />
|
||
|
|
</ObjectAnimationUsingKeyFrames>
|
||
|
|
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="BorderElement" Storyboard.TargetProperty="BorderBrush">
|
||
|
|
<DiscreteObjectKeyFrame KeyTime="0" Value="{ThemeResource TextControlBorderBrushDisabled}" />
|
||
|
|
</ObjectAnimationUsingKeyFrames>-->
|
||
|
|
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="ContentElement" Storyboard.TargetProperty="Foreground">
|
||
|
|
<DiscreteObjectKeyFrame KeyTime="0" Value="{ThemeResource TextControlForegroundDisabled}" />
|
||
|
|
</ObjectAnimationUsingKeyFrames>
|
||
|
|
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="DescriptionPresenter" Storyboard.TargetProperty="Foreground">
|
||
|
|
<DiscreteObjectKeyFrame KeyTime="0" Value="{ThemeResource TextControlForegroundDisabled}" />
|
||
|
|
</ObjectAnimationUsingKeyFrames>
|
||
|
|
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="PlaceholderTextContentPresenter" Storyboard.TargetProperty="Foreground">
|
||
|
|
<DiscreteObjectKeyFrame KeyTime="0" Value="{Binding PlaceholderForeground, RelativeSource={RelativeSource TemplatedParent}, TargetNullValue={ThemeResource TextControlPlaceholderForegroundDisabled}}" />
|
||
|
|
</ObjectAnimationUsingKeyFrames>
|
||
|
|
</Storyboard>
|
||
|
|
</VisualState>
|
||
|
|
<VisualState x:Name="PointerOver">
|
||
|
|
<Storyboard>
|
||
|
|
<!--<ObjectAnimationUsingKeyFrames Storyboard.TargetName="BorderElement" Storyboard.TargetProperty="BorderBrush">
|
||
|
|
<DiscreteObjectKeyFrame KeyTime="0" Value="{ThemeResource TextControlBorderBrushPointerOver}" />
|
||
|
|
</ObjectAnimationUsingKeyFrames>
|
||
|
|
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="BorderElement" Storyboard.TargetProperty="Background">
|
||
|
|
<DiscreteObjectKeyFrame KeyTime="0" Value="{ThemeResource TextControlBackgroundPointerOver}" />
|
||
|
|
</ObjectAnimationUsingKeyFrames>-->
|
||
|
|
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="PlaceholderTextContentPresenter" Storyboard.TargetProperty="Foreground">
|
||
|
|
<DiscreteObjectKeyFrame KeyTime="0" Value="{Binding PlaceholderForeground, RelativeSource={RelativeSource TemplatedParent}, TargetNullValue={ThemeResource TextControlPlaceholderForegroundPointerOver}}" />
|
||
|
|
</ObjectAnimationUsingKeyFrames>
|
||
|
|
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="ContentElement" Storyboard.TargetProperty="Foreground">
|
||
|
|
<DiscreteObjectKeyFrame KeyTime="0" Value="{ThemeResource TextControlForegroundPointerOver}" />
|
||
|
|
</ObjectAnimationUsingKeyFrames>
|
||
|
|
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="DescriptionPresenter" Storyboard.TargetProperty="Foreground">
|
||
|
|
<DiscreteObjectKeyFrame KeyTime="0" Value="{Binding PlaceholderForeground, RelativeSource={RelativeSource TemplatedParent}, TargetNullValue={ThemeResource TextControlPlaceholderForegroundPointerOver}}" />
|
||
|
|
</ObjectAnimationUsingKeyFrames>
|
||
|
|
</Storyboard>
|
||
|
|
</VisualState>
|
||
|
|
<VisualState x:Name="Focused">
|
||
|
|
<Storyboard>
|
||
|
|
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="PlaceholderTextContentPresenter" Storyboard.TargetProperty="Foreground">
|
||
|
|
<DiscreteObjectKeyFrame KeyTime="0" Value="{Binding PlaceholderForeground, RelativeSource={RelativeSource TemplatedParent}, TargetNullValue={ThemeResource TextControlPlaceholderForegroundFocused}}" />
|
||
|
|
</ObjectAnimationUsingKeyFrames>
|
||
|
|
<!--<ObjectAnimationUsingKeyFrames Storyboard.TargetName="BorderElement" Storyboard.TargetProperty="Background">
|
||
|
|
<DiscreteObjectKeyFrame KeyTime="0" Value="{ThemeResource TextControlBackgroundFocused}" />
|
||
|
|
</ObjectAnimationUsingKeyFrames>
|
||
|
|
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="BorderElement" Storyboard.TargetProperty="BorderBrush">
|
||
|
|
<DiscreteObjectKeyFrame KeyTime="0" Value="{ThemeResource TextControlBorderBrushFocused}" />
|
||
|
|
</ObjectAnimationUsingKeyFrames>
|
||
|
|
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="BorderElement" Storyboard.TargetProperty="BorderThickness">
|
||
|
|
<DiscreteObjectKeyFrame KeyTime="0" Value="{ThemeResource TextControlBorderThemeThicknessFocused}" />
|
||
|
|
</ObjectAnimationUsingKeyFrames>-->
|
||
|
|
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="ContentElement" Storyboard.TargetProperty="Foreground">
|
||
|
|
<DiscreteObjectKeyFrame KeyTime="0" Value="{ThemeResource TextControlForegroundFocused}" />
|
||
|
|
</ObjectAnimationUsingKeyFrames>
|
||
|
|
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="DescriptionPresenter" Storyboard.TargetProperty="Foreground">
|
||
|
|
<DiscreteObjectKeyFrame KeyTime="0" Value="{Binding PlaceholderForeground, RelativeSource={RelativeSource TemplatedParent}, TargetNullValue={ThemeResource TextControlPlaceholderForegroundFocused}}" />
|
||
|
|
</ObjectAnimationUsingKeyFrames>
|
||
|
|
</Storyboard>
|
||
|
|
</VisualState>
|
||
|
|
</VisualStateGroup>
|
||
|
|
<VisualStateGroup x:Name="ButtonStates">
|
||
|
|
<VisualState x:Name="ButtonVisible">
|
||
|
|
<Storyboard>
|
||
|
|
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="DeleteButton" Storyboard.TargetProperty="Visibility">
|
||
|
|
<DiscreteObjectKeyFrame KeyTime="0">
|
||
|
|
<DiscreteObjectKeyFrame.Value>
|
||
|
|
<Visibility>Visible</Visibility>
|
||
|
|
</DiscreteObjectKeyFrame.Value>
|
||
|
|
</DiscreteObjectKeyFrame>
|
||
|
|
</ObjectAnimationUsingKeyFrames>
|
||
|
|
</Storyboard>
|
||
|
|
</VisualState>
|
||
|
|
<VisualState x:Name="ButtonCollapsed" />
|
||
|
|
</VisualStateGroup>
|
||
|
|
</VisualStateManager.VisualStateGroups>
|
||
|
|
</Grid>
|
||
|
|
</ControlTemplate>
|
||
|
|
</Setter.Value>
|
||
|
|
</Setter>
|
||
|
|
</Style>
|
||
|
|
</ResourceDictionary>
|