mirror of
https://github.com/chibicitiberiu/drumkit.git
synced 2024-02-24 10:53:32 +00:00
156 lines
10 KiB
Plaintext
156 lines
10 KiB
Plaintext
|
<ResourceDictionary
|
||
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
||
|
|
||
|
<SolidColorBrush x:Key="TextBoxBackgroundThemeBrush" Color="#ffff" />
|
||
|
<SolidColorBrush x:Key="TextBoxBorderThemeBrush" Color="#efff" />
|
||
|
<SolidColorBrush x:Key="TextBoxDisabledBackgroundThemeBrush" Color="Transparent" />
|
||
|
<SolidColorBrush x:Key="TextBoxDisabledBorderThemeBrush" Color="#66FFFFFF" />
|
||
|
<SolidColorBrush x:Key="TextBoxDisabledForegroundThemeBrush" Color="#FF666666" />
|
||
|
<SolidColorBrush x:Key="TextBoxForegroundThemeBrush" Color="#f000" />
|
||
|
|
||
|
<x:Double x:Key="TextControlBackgroundThemeOpacity">0</x:Double>
|
||
|
<x:Double x:Key="TextControlBorderThemeOpacity">0</x:Double>
|
||
|
<x:Double x:Key="TextControlPointerOverBackgroundThemeOpacity">0.17</x:Double>
|
||
|
<x:Double x:Key="TextControlPointerOverBorderThemeOpacity">0.17</x:Double>
|
||
|
<x:Double x:Key="TextControlThemeMinHeight">32</x:Double>
|
||
|
<x:Double x:Key="TextControlThemeMinWidth">64</x:Double>
|
||
|
<Thickness x:Key="TextControlBorderThemeThickness">2</Thickness>
|
||
|
<Thickness x:Key="TextControlThemePadding">10,3,10,5</Thickness>
|
||
|
|
||
|
<Style x:Key="MyTextBoxStyle" TargetType="TextBox">
|
||
|
<Setter Property="MinWidth" Value="{StaticResource TextControlThemeMinWidth}" />
|
||
|
<Setter Property="MinHeight" Value="{StaticResource TextControlThemeMinHeight}" />
|
||
|
<Setter Property="Foreground" Value="{StaticResource TextBoxForegroundThemeBrush}" />
|
||
|
<Setter Property="Background" Value="{StaticResource TextBoxBackgroundThemeBrush}" />
|
||
|
<Setter Property="BorderBrush" Value="{StaticResource TextBoxBorderThemeBrush}" />
|
||
|
<Setter Property="BorderThickness" Value="{StaticResource TextControlBorderThemeThickness}" />
|
||
|
<Setter Property="FontFamily" Value="{StaticResource ContentControlThemeFontFamily}" />
|
||
|
<Setter Property="FontSize" Value="{StaticResource ControlContentThemeFontSize}" />
|
||
|
<Setter Property="ScrollViewer.HorizontalScrollBarVisibility" Value="Hidden" />
|
||
|
<Setter Property="ScrollViewer.VerticalScrollBarVisibility" Value="Hidden" />
|
||
|
<Setter Property="ScrollViewer.IsDeferredScrollingEnabled" Value="False" />
|
||
|
<Setter Property="Padding" Value="{StaticResource TextControlThemePadding}"/>
|
||
|
<Setter Property="Template">
|
||
|
<Setter.Value>
|
||
|
<ControlTemplate TargetType="TextBox">
|
||
|
<Grid>
|
||
|
<VisualStateManager.VisualStateGroups>
|
||
|
<VisualStateGroup x:Name="CommonStates">
|
||
|
<VisualState x:Name="Disabled">
|
||
|
<Storyboard>
|
||
|
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="BackgroundElement"
|
||
|
Storyboard.TargetProperty="Background">
|
||
|
<DiscreteObjectKeyFrame KeyTime="0" Value="{StaticResource TextBoxDisabledBackgroundThemeBrush}" />
|
||
|
</ObjectAnimationUsingKeyFrames>
|
||
|
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="BorderElement"
|
||
|
Storyboard.TargetProperty="BorderBrush">
|
||
|
<DiscreteObjectKeyFrame KeyTime="0" Value="{StaticResource TextBoxDisabledBorderThemeBrush}" />
|
||
|
</ObjectAnimationUsingKeyFrames>
|
||
|
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="ContentElement"
|
||
|
Storyboard.TargetProperty="Foreground">
|
||
|
<DiscreteObjectKeyFrame KeyTime="0" Value="{StaticResource TextBoxDisabledForegroundThemeBrush}" />
|
||
|
</ObjectAnimationUsingKeyFrames>
|
||
|
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="EditIconElement"
|
||
|
Storyboard.TargetProperty="Foreground">
|
||
|
<DiscreteObjectKeyFrame KeyTime="0" Value="White" />
|
||
|
</ObjectAnimationUsingKeyFrames>
|
||
|
</Storyboard>
|
||
|
</VisualState>
|
||
|
<VisualState x:Name="Normal">
|
||
|
<Storyboard>
|
||
|
<DoubleAnimation Storyboard.TargetName="BackgroundElement"
|
||
|
Storyboard.TargetProperty="Opacity"
|
||
|
Duration="0"
|
||
|
To="0" />
|
||
|
<DoubleAnimation Storyboard.TargetName="BorderElement"
|
||
|
Storyboard.TargetProperty="Opacity"
|
||
|
Duration="0"
|
||
|
To="0" />
|
||
|
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="ContentElement"
|
||
|
Storyboard.TargetProperty="Foreground">
|
||
|
<DiscreteObjectKeyFrame KeyTime="0" Value="White" />
|
||
|
</ObjectAnimationUsingKeyFrames>
|
||
|
</Storyboard>
|
||
|
</VisualState>
|
||
|
<VisualState x:Name="PointerOver">
|
||
|
<Storyboard>
|
||
|
<DoubleAnimation Storyboard.TargetName="BackgroundElement"
|
||
|
Storyboard.TargetProperty="Opacity"
|
||
|
Duration="0"
|
||
|
To="0.1" />
|
||
|
<DoubleAnimation Storyboard.TargetName="BorderElement"
|
||
|
Storyboard.TargetProperty="Opacity"
|
||
|
Duration="0"
|
||
|
To="0.1" />
|
||
|
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="ContentElement"
|
||
|
Storyboard.TargetProperty="Foreground">
|
||
|
<DiscreteObjectKeyFrame KeyTime="0" Value="White" />
|
||
|
</ObjectAnimationUsingKeyFrames>
|
||
|
</Storyboard>
|
||
|
</VisualState>
|
||
|
<VisualState x:Name="Focused">
|
||
|
<Storyboard>
|
||
|
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="EditIconElement"
|
||
|
Storyboard.TargetProperty="Foreground">
|
||
|
<DiscreteObjectKeyFrame KeyTime="0" Value="Gray" />
|
||
|
</ObjectAnimationUsingKeyFrames>
|
||
|
</Storyboard>
|
||
|
</VisualState>
|
||
|
</VisualStateGroup>
|
||
|
</VisualStateManager.VisualStateGroups>
|
||
|
<Grid.ColumnDefinitions>
|
||
|
<ColumnDefinition Width="Auto" />
|
||
|
<ColumnDefinition Width="*" />
|
||
|
<ColumnDefinition Width="0" />
|
||
|
</Grid.ColumnDefinitions>
|
||
|
|
||
|
<Border x:Name="BackgroundElement"
|
||
|
Background="{TemplateBinding Background}"
|
||
|
Margin="{TemplateBinding BorderThickness}"
|
||
|
Grid.ColumnSpan="3"/>
|
||
|
|
||
|
<Border x:Name="BorderElement"
|
||
|
BorderBrush="{TemplateBinding BorderBrush}"
|
||
|
BorderThickness="{TemplateBinding BorderThickness}"
|
||
|
Grid.ColumnSpan="3"/>
|
||
|
|
||
|
<TextBlock x:Name="EditIconElement"
|
||
|
HorizontalAlignment="Center"
|
||
|
VerticalAlignment="Top"
|
||
|
Margin="5,5,0,5"
|
||
|
Foreground="#8fff"
|
||
|
FontFamily="{StaticResource SymbolThemeFontFamily}"
|
||
|
FontStyle="Normal" FontSize="14"
|
||
|
Opacity=".6"
|
||
|
Text="" />
|
||
|
|
||
|
<ScrollViewer x:Name="ContentElement"
|
||
|
HorizontalScrollMode="{TemplateBinding ScrollViewer.HorizontalScrollMode}"
|
||
|
HorizontalScrollBarVisibility="{TemplateBinding ScrollViewer.HorizontalScrollBarVisibility}"
|
||
|
VerticalScrollMode="{TemplateBinding ScrollViewer.VerticalScrollMode}"
|
||
|
VerticalScrollBarVisibility="{TemplateBinding ScrollViewer.VerticalScrollBarVisibility}"
|
||
|
IsHorizontalRailEnabled="{TemplateBinding ScrollViewer.IsHorizontalRailEnabled}"
|
||
|
IsVerticalRailEnabled="{TemplateBinding ScrollViewer.IsVerticalRailEnabled}"
|
||
|
IsDeferredScrollingEnabled="{TemplateBinding ScrollViewer.IsDeferredScrollingEnabled}"
|
||
|
Margin="{TemplateBinding BorderThickness}"
|
||
|
Padding="{TemplateBinding Padding}"
|
||
|
IsTabStop="False"
|
||
|
ZoomMode="Disabled"
|
||
|
Grid.Column="1"/>
|
||
|
|
||
|
<Button x:Name="DeleteButton"
|
||
|
IsTabStop="False"
|
||
|
Grid.Column="2"
|
||
|
Visibility="Collapsed"
|
||
|
Opacity="0"
|
||
|
IsEnabled="False" />
|
||
|
</Grid>
|
||
|
</ControlTemplate>
|
||
|
</Setter.Value>
|
||
|
</Setter>
|
||
|
|
||
|
</Style>
|
||
|
|
||
|
</ResourceDictionary>
|