493 lines
25 KiB
XML
493 lines
25 KiB
XML
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
|
<!-- Base -->
|
|
<Style x:Key="BaseButton" TargetType="{x:Type Button}">
|
|
<Setter Property="Margin" Value="3" />
|
|
<Setter Property="MinWidth" Value="25" />
|
|
<Setter Property="Height" Value="25" />
|
|
<Setter Property="HorizontalAlignment" Value="Center" />
|
|
<Setter Property="VerticalContentAlignment" Value="Center" />
|
|
<Setter Property="SnapsToDevicePixels" Value="True" />
|
|
<Setter Property="Foreground" Value="#FFFFFFFF" />
|
|
<Setter Property="FontFamily" Value="Microsoft Sans Serif" />
|
|
<Setter Property="FontSize" Value="12" />
|
|
</Style>
|
|
|
|
<Style
|
|
x:Key="PrimaryButton"
|
|
BasedOn="{StaticResource BaseButton}"
|
|
TargetType="{x:Type Button}">
|
|
<Setter Property="Template">
|
|
<Setter.Value>
|
|
<ControlTemplate TargetType="{x:Type Button}">
|
|
<ControlTemplate.Resources>
|
|
<Storyboard x:Key="Timeline1">
|
|
<DoubleAnimationUsingKeyFrames
|
|
BeginTime="00:00:00"
|
|
Storyboard.TargetName="glow"
|
|
Storyboard.TargetProperty="(UIElement.Opacity)">
|
|
<SplineDoubleKeyFrame KeyTime="00:00:00.3000000" Value="1" />
|
|
</DoubleAnimationUsingKeyFrames>
|
|
</Storyboard>
|
|
<Storyboard x:Key="Timeline2">
|
|
<DoubleAnimationUsingKeyFrames
|
|
BeginTime="00:00:00"
|
|
Storyboard.TargetName="glow"
|
|
Storyboard.TargetProperty="(UIElement.Opacity)">
|
|
<SplineDoubleKeyFrame KeyTime="00:00:00.3000000" Value="0" />
|
|
</DoubleAnimationUsingKeyFrames>
|
|
</Storyboard>
|
|
</ControlTemplate.Resources>
|
|
<Border
|
|
x:Name="border"
|
|
Padding="0,0,0,0"
|
|
BorderBrush="#FF000000"
|
|
BorderThickness="1,1,1,1"
|
|
CornerRadius="4,4,4,4">
|
|
<Border.Background>
|
|
<LinearGradientBrush StartPoint="0.5,0" EndPoint="0.5,1">
|
|
<GradientStop Offset="0" Color="#FF000000" />
|
|
<GradientStop Offset="1" Color="#FF262626" />
|
|
</LinearGradientBrush>
|
|
</Border.Background>
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="0.5*" />
|
|
<RowDefinition Height="0.5*" />
|
|
</Grid.RowDefinitions>
|
|
<Border
|
|
x:Name="glow"
|
|
Grid.RowSpan="2"
|
|
Width="Auto"
|
|
HorizontalAlignment="Stretch"
|
|
CornerRadius="4,4,4,4"
|
|
Opacity="0">
|
|
<Border.Background>
|
|
<RadialGradientBrush>
|
|
<RadialGradientBrush.RelativeTransform>
|
|
<TransformGroup>
|
|
<ScaleTransform ScaleX="1.702" ScaleY="2.243" />
|
|
<SkewTransform AngleX="0" AngleY="0" />
|
|
<RotateTransform Angle="0" />
|
|
<TranslateTransform X="-0.368" Y="-0.152" />
|
|
</TransformGroup>
|
|
</RadialGradientBrush.RelativeTransform>
|
|
<GradientStop Offset="0" Color="#B28DBDFF" />
|
|
<GradientStop Offset="1" Color="#008DBDFF" />
|
|
</RadialGradientBrush>
|
|
</Border.Background>
|
|
</Border>
|
|
<Border
|
|
x:Name="shine"
|
|
Grid.Row="0"
|
|
Width="Auto"
|
|
Margin="0,0,0,0"
|
|
HorizontalAlignment="Stretch"
|
|
CornerRadius="4,4,0,0">
|
|
<Border.Background>
|
|
<LinearGradientBrush StartPoint="0.5,0" EndPoint="0.5,1">
|
|
<GradientStop Offset="0" Color="#99FFFFFF" />
|
|
<GradientStop Offset="1" Color="#33FFFFFF" />
|
|
</LinearGradientBrush>
|
|
</Border.Background>
|
|
</Border>
|
|
<Border
|
|
Grid.Row="0"
|
|
Grid.RowSpan="2"
|
|
Margin="0,0,0,0">
|
|
<ContentPresenter
|
|
Width="Auto"
|
|
Margin="3,0,3,0"
|
|
HorizontalAlignment="Center"
|
|
VerticalAlignment="Center" />
|
|
</Border>
|
|
</Grid>
|
|
</Border>
|
|
|
|
<ControlTemplate.Triggers>
|
|
<Trigger Property="IsPressed" Value="True">
|
|
<Setter TargetName="shine" Property="Opacity" Value="0.4" />
|
|
<Setter TargetName="border" Property="Background" Value="#998DBDFF" />
|
|
<Setter TargetName="glow" Property="Visibility" Value="Hidden" />
|
|
<Setter TargetName="border" Property="BorderBrush" Value="#FF0C0C0C" />
|
|
</Trigger>
|
|
<Trigger Property="IsMouseOver" Value="True">
|
|
<Trigger.EnterActions>
|
|
<BeginStoryboard Storyboard="{StaticResource Timeline1}" />
|
|
</Trigger.EnterActions>
|
|
<Trigger.ExitActions>
|
|
<BeginStoryboard x:Name="Timeline2_BeginStoryboard" Storyboard="{StaticResource Timeline2}" />
|
|
</Trigger.ExitActions>
|
|
</Trigger>
|
|
<Trigger Property="IsEnabled" Value="False">
|
|
<Setter TargetName="border" Property="Background" Value="#FF808080" />
|
|
</Trigger>
|
|
</ControlTemplate.Triggers>
|
|
</ControlTemplate>
|
|
</Setter.Value>
|
|
</Setter>
|
|
</Style>
|
|
|
|
<Style
|
|
x:Key="HideDisabledButton"
|
|
BasedOn="{StaticResource PrimaryButton}"
|
|
TargetType="{x:Type Button}">
|
|
<Style.Triggers>
|
|
<DataTrigger Binding="{Binding RelativeSource={RelativeSource Self}, Path=IsEnabled}" Value="False">
|
|
<Setter Property="Visibility" Value="Collapsed" />
|
|
</DataTrigger>
|
|
</Style.Triggers>
|
|
</Style>
|
|
|
|
<Style
|
|
x:Key="HideDisabledButtonSmall"
|
|
BasedOn="{StaticResource HideDisabledButton}"
|
|
TargetType="{x:Type Button}">
|
|
<Setter Property="Height" Value="21" />
|
|
</Style>
|
|
|
|
<Style
|
|
x:Key="PrimaryButtonSmall"
|
|
BasedOn="{StaticResource PrimaryButton}"
|
|
TargetType="{x:Type Button}">
|
|
<Setter Property="Height" Value="21" />
|
|
</Style>
|
|
|
|
<!-- Region Weiße Buttons im ModalPopup -->
|
|
<Style
|
|
x:Key="PopupToolbarButtonStyle"
|
|
BasedOn="{StaticResource HideDisabledButton}"
|
|
TargetType="{x:Type Button}">
|
|
<Setter Property="Foreground" Value="#FFFFFFFF" />
|
|
<Setter Property="FontWeight" Value="Medium" />
|
|
<Setter Property="FontSize" Value="16" />
|
|
<Setter Property="Template">
|
|
<Setter.Value>
|
|
<ControlTemplate TargetType="{x:Type Button}">
|
|
<ControlTemplate.Resources>
|
|
<Storyboard x:Key="Storyboard1">
|
|
<DoubleAnimationUsingKeyFrames
|
|
AccelerationRatio="1"
|
|
BeginTime="00:00:00"
|
|
Storyboard.TargetName="contentPresenter"
|
|
Storyboard.TargetProperty="(UIElement.RenderTransform).(TransformGroup.Children)[0].(ScaleTransform.ScaleX)"
|
|
Duration="00:00:00.2">
|
|
<SplineDoubleKeyFrame KeyTime="00:00:00.2" Value="1.2" />
|
|
</DoubleAnimationUsingKeyFrames>
|
|
<DoubleAnimationUsingKeyFrames
|
|
AccelerationRatio="1"
|
|
BeginTime="00:00:00"
|
|
Storyboard.TargetName="contentPresenter"
|
|
Storyboard.TargetProperty="(UIElement.RenderTransform).(TransformGroup.Children)[0].(ScaleTransform.ScaleY)"
|
|
Duration="00:00:00.2">
|
|
<SplineDoubleKeyFrame KeyTime="00:00:00.2" Value="1.2" />
|
|
</DoubleAnimationUsingKeyFrames>
|
|
</Storyboard>
|
|
<Storyboard x:Key="Storyboard2">
|
|
<DoubleAnimationUsingKeyFrames
|
|
BeginTime="00:00:00"
|
|
DecelerationRatio="1"
|
|
Storyboard.TargetName="contentPresenter"
|
|
Storyboard.TargetProperty="(UIElement.RenderTransform).(TransformGroup.Children)[0].(ScaleTransform.ScaleX)"
|
|
Duration="00:00:00.2">
|
|
<SplineDoubleKeyFrame KeyTime="00:00:00.2" Value="1" />
|
|
</DoubleAnimationUsingKeyFrames>
|
|
<DoubleAnimationUsingKeyFrames
|
|
BeginTime="00:00:00"
|
|
DecelerationRatio="1"
|
|
Storyboard.TargetName="contentPresenter"
|
|
Storyboard.TargetProperty="(UIElement.RenderTransform).(TransformGroup.Children)[0].(ScaleTransform.ScaleY)"
|
|
Duration="00:00:00.2">
|
|
<SplineDoubleKeyFrame KeyTime="00:00:00.2" Value="1" />
|
|
</DoubleAnimationUsingKeyFrames>
|
|
</Storyboard>
|
|
</ControlTemplate.Resources>
|
|
<ContentPresenter
|
|
x:Name="contentPresenter"
|
|
Width="Auto"
|
|
Margin="3,0,3,0"
|
|
HorizontalAlignment="Center"
|
|
VerticalAlignment="Center"
|
|
RenderTransformOrigin="0.5,0.5">
|
|
<ContentPresenter.RenderTransform>
|
|
<TransformGroup>
|
|
<ScaleTransform ScaleX="1" ScaleY="1" />
|
|
<SkewTransform AngleX="0" AngleY="0" />
|
|
<RotateTransform Angle="0" />
|
|
<TranslateTransform X="0" Y="0" />
|
|
</TransformGroup>
|
|
</ContentPresenter.RenderTransform>
|
|
</ContentPresenter>
|
|
<ControlTemplate.Triggers>
|
|
<Trigger Property="IsMouseOver" Value="True">
|
|
<Trigger.ExitActions>
|
|
<BeginStoryboard x:Name="Storyboard2_BeginStoryboard" Storyboard="{StaticResource Storyboard2}" />
|
|
</Trigger.ExitActions>
|
|
<Trigger.EnterActions>
|
|
<BeginStoryboard Storyboard="{StaticResource Storyboard1}" />
|
|
</Trigger.EnterActions>
|
|
</Trigger>
|
|
</ControlTemplate.Triggers>
|
|
</ControlTemplate>
|
|
</Setter.Value>
|
|
</Setter>
|
|
</Style>
|
|
|
|
<Style
|
|
x:Key="PopupToolbarButtonSmallStyle"
|
|
BasedOn="{StaticResource HideDisabledButton}"
|
|
TargetType="{x:Type Button}">
|
|
<Setter Property="Foreground" Value="#FFFFFFFF" />
|
|
<Setter Property="FontWeight" Value="Medium" />
|
|
<Setter Property="FontSize" Value="16" />
|
|
<Setter Property="Template">
|
|
<Setter.Value>
|
|
<ControlTemplate TargetType="{x:Type Button}">
|
|
<ControlTemplate.Resources>
|
|
<Storyboard x:Key="Storyboard1">
|
|
<DoubleAnimationUsingKeyFrames
|
|
AccelerationRatio="1"
|
|
BeginTime="00:00:00"
|
|
Storyboard.TargetName="contentPresenter"
|
|
Storyboard.TargetProperty="(UIElement.RenderTransform).(TransformGroup.Children)[0].(ScaleTransform.ScaleX)"
|
|
Duration="00:00:00.2">
|
|
<SplineDoubleKeyFrame KeyTime="00:00:00.2" Value="1.15" />
|
|
</DoubleAnimationUsingKeyFrames>
|
|
<DoubleAnimationUsingKeyFrames
|
|
AccelerationRatio="1"
|
|
BeginTime="00:00:00"
|
|
Storyboard.TargetName="contentPresenter"
|
|
Storyboard.TargetProperty="(UIElement.RenderTransform).(TransformGroup.Children)[0].(ScaleTransform.ScaleY)"
|
|
Duration="00:00:00.2">
|
|
<SplineDoubleKeyFrame KeyTime="00:00:00.2" Value="1.15" />
|
|
</DoubleAnimationUsingKeyFrames>
|
|
</Storyboard>
|
|
<Storyboard x:Key="Storyboard2">
|
|
<DoubleAnimationUsingKeyFrames
|
|
BeginTime="00:00:00"
|
|
DecelerationRatio="1"
|
|
Storyboard.TargetName="contentPresenter"
|
|
Storyboard.TargetProperty="(UIElement.RenderTransform).(TransformGroup.Children)[0].(ScaleTransform.ScaleX)"
|
|
Duration="00:00:00.2">
|
|
<SplineDoubleKeyFrame KeyTime="00:00:00.2" Value="1" />
|
|
</DoubleAnimationUsingKeyFrames>
|
|
<DoubleAnimationUsingKeyFrames
|
|
BeginTime="00:00:00"
|
|
DecelerationRatio="1"
|
|
Storyboard.TargetName="contentPresenter"
|
|
Storyboard.TargetProperty="(UIElement.RenderTransform).(TransformGroup.Children)[0].(ScaleTransform.ScaleY)"
|
|
Duration="00:00:00.2">
|
|
<SplineDoubleKeyFrame KeyTime="00:00:00.2" Value="1" />
|
|
</DoubleAnimationUsingKeyFrames>
|
|
</Storyboard>
|
|
</ControlTemplate.Resources>
|
|
<ContentPresenter
|
|
x:Name="contentPresenter"
|
|
Width="Auto"
|
|
Margin="3,0,3,0"
|
|
HorizontalAlignment="Center"
|
|
VerticalAlignment="Center"
|
|
RenderTransformOrigin="0.5,0.5">
|
|
<ContentPresenter.RenderTransform>
|
|
<TransformGroup>
|
|
<ScaleTransform ScaleX="1" ScaleY="1" />
|
|
<SkewTransform AngleX="0" AngleY="0" />
|
|
<RotateTransform Angle="0" />
|
|
<TranslateTransform X="0" Y="0" />
|
|
</TransformGroup>
|
|
</ContentPresenter.RenderTransform>
|
|
</ContentPresenter>
|
|
<ControlTemplate.Triggers>
|
|
<Trigger Property="IsMouseOver" Value="True">
|
|
<Trigger.ExitActions>
|
|
<BeginStoryboard x:Name="Storyboard2_BeginStoryboard" Storyboard="{StaticResource Storyboard2}" />
|
|
</Trigger.ExitActions>
|
|
<Trigger.EnterActions>
|
|
<BeginStoryboard Storyboard="{StaticResource Storyboard1}" />
|
|
</Trigger.EnterActions>
|
|
</Trigger>
|
|
</ControlTemplate.Triggers>
|
|
</ControlTemplate>
|
|
</Setter.Value>
|
|
</Setter>
|
|
</Style>
|
|
<!-- EndRegion -->
|
|
|
|
<!-- Region Weiße Buttons im MainNavigationView -->
|
|
<Style
|
|
x:Key="NavigationToolbarButtonStyle"
|
|
BasedOn="{StaticResource HideDisabledButton}"
|
|
TargetType="{x:Type Button}">
|
|
<Setter Property="VerticalContentAlignment" Value="Center" />
|
|
<Setter Property="HorizontalAlignment" Value="Center" />
|
|
<Setter Property="Template">
|
|
<Setter.Value>
|
|
<ControlTemplate TargetType="{x:Type Button}">
|
|
<ControlTemplate.Resources>
|
|
<Storyboard x:Key="Storyboard1">
|
|
<DoubleAnimationUsingKeyFrames
|
|
AccelerationRatio="1"
|
|
BeginTime="00:00:00"
|
|
Storyboard.TargetName="contentPresenter"
|
|
Storyboard.TargetProperty="(UIElement.RenderTransform).(TransformGroup.Children)[0].(ScaleTransform.ScaleX)"
|
|
Duration="00:00:00.2">
|
|
<SplineDoubleKeyFrame KeyTime="00:00:00.2" Value="1.2" />
|
|
</DoubleAnimationUsingKeyFrames>
|
|
<DoubleAnimationUsingKeyFrames
|
|
AccelerationRatio="1"
|
|
BeginTime="00:00:00"
|
|
Storyboard.TargetName="contentPresenter"
|
|
Storyboard.TargetProperty="(UIElement.RenderTransform).(TransformGroup.Children)[0].(ScaleTransform.ScaleY)"
|
|
Duration="00:00:00.2">
|
|
<SplineDoubleKeyFrame KeyTime="00:00:00.2" Value="1.2" />
|
|
</DoubleAnimationUsingKeyFrames>
|
|
</Storyboard>
|
|
<Storyboard x:Key="Storyboard2">
|
|
<DoubleAnimationUsingKeyFrames
|
|
BeginTime="00:00:00"
|
|
DecelerationRatio="1"
|
|
Storyboard.TargetName="contentPresenter"
|
|
Storyboard.TargetProperty="(UIElement.RenderTransform).(TransformGroup.Children)[0].(ScaleTransform.ScaleX)"
|
|
Duration="00:00:00.2">
|
|
<SplineDoubleKeyFrame KeyTime="00:00:00.2" Value="1" />
|
|
</DoubleAnimationUsingKeyFrames>
|
|
<DoubleAnimationUsingKeyFrames
|
|
BeginTime="00:00:00"
|
|
DecelerationRatio="1"
|
|
Storyboard.TargetName="contentPresenter"
|
|
Storyboard.TargetProperty="(UIElement.RenderTransform).(TransformGroup.Children)[0].(ScaleTransform.ScaleY)"
|
|
Duration="00:00:00.2">
|
|
<SplineDoubleKeyFrame KeyTime="00:00:00.2" Value="1" />
|
|
</DoubleAnimationUsingKeyFrames>
|
|
</Storyboard>
|
|
</ControlTemplate.Resources>
|
|
<ContentPresenter
|
|
x:Name="contentPresenter"
|
|
Width="Auto"
|
|
Margin="3,0,3,0"
|
|
HorizontalAlignment="Center"
|
|
VerticalAlignment="Center"
|
|
RenderTransformOrigin="0.5,0.5">
|
|
<ContentPresenter.RenderTransform>
|
|
<TransformGroup>
|
|
<ScaleTransform ScaleX="1" ScaleY="1" />
|
|
<SkewTransform AngleX="0" AngleY="0" />
|
|
<RotateTransform Angle="0" />
|
|
<TranslateTransform X="0" Y="0" />
|
|
</TransformGroup>
|
|
</ContentPresenter.RenderTransform>
|
|
</ContentPresenter>
|
|
<ControlTemplate.Triggers>
|
|
<Trigger Property="IsMouseOver" Value="True">
|
|
<Trigger.ExitActions>
|
|
<BeginStoryboard x:Name="Storyboard2_BeginStoryboard" Storyboard="{StaticResource Storyboard2}" />
|
|
</Trigger.ExitActions>
|
|
<Trigger.EnterActions>
|
|
<BeginStoryboard Storyboard="{StaticResource Storyboard1}" />
|
|
</Trigger.EnterActions>
|
|
</Trigger>
|
|
</ControlTemplate.Triggers>
|
|
</ControlTemplate>
|
|
</Setter.Value>
|
|
</Setter>
|
|
<Setter Property="Foreground" Value="#FFFFFFFF" />
|
|
<Setter Property="FontFamily" Value="Microsoft Sans Serif" />
|
|
<Setter Property="FontSize" Value="16" />
|
|
</Style>
|
|
<!-- EndRegion -->
|
|
|
|
<Style
|
|
x:Key="ButtonPreviousStyle"
|
|
BasedOn="{StaticResource HideDisabledButton}"
|
|
TargetType="{x:Type Button}">
|
|
<Setter Property="Width" Value="25" />
|
|
<Setter Property="Height" Value="25" />
|
|
<Setter Property="Margin" Value="3" />
|
|
<Setter Property="Content">
|
|
<Setter.Value>
|
|
<Image
|
|
Width="20"
|
|
Height="18"
|
|
Margin="0,3,0,0"
|
|
HorizontalAlignment="Center"
|
|
VerticalAlignment="Center"
|
|
Source="..\..\Ressources\Icons\Undo.png" />
|
|
</Setter.Value>
|
|
</Setter>
|
|
</Style>
|
|
|
|
<Style
|
|
x:Key="ButtonRedoStyle"
|
|
BasedOn="{StaticResource HideDisabledButton}"
|
|
TargetType="{x:Type Button}">
|
|
<Setter Property="Width" Value="25" />
|
|
<Setter Property="Height" Value="25" />
|
|
<Setter Property="Margin" Value="3" />
|
|
<Setter Property="Content">
|
|
<Setter.Value>
|
|
<Image
|
|
Width="20"
|
|
Height="18"
|
|
Margin="0,3,0,0"
|
|
HorizontalAlignment="Center"
|
|
VerticalAlignment="Center"
|
|
Source="..\..\Ressources\Icons\Undo.png" />
|
|
</Setter.Value>
|
|
</Setter>
|
|
<Setter Property="RenderTransform">
|
|
<Setter.Value>
|
|
<TransformGroup>
|
|
<ScaleTransform ScaleX="-1" />
|
|
<TranslateTransform X="25" />
|
|
</TransformGroup>
|
|
</Setter.Value>
|
|
</Setter>
|
|
</Style>
|
|
|
|
<Style
|
|
x:Key="ButtonPreviousStyle2"
|
|
BasedOn="{StaticResource PrimaryButton}"
|
|
TargetType="{x:Type Button}">
|
|
<Setter Property="Width" Value="25" />
|
|
<Setter Property="Height" Value="25" />
|
|
<Setter Property="Margin" Value="3" />
|
|
<Setter Property="Content">
|
|
<Setter.Value>
|
|
<Image
|
|
Width="20"
|
|
Height="18"
|
|
Margin="0,3,0,0"
|
|
HorizontalAlignment="Center"
|
|
VerticalAlignment="Center"
|
|
Source="..\..\Ressources\Icons\Undo.png" />
|
|
</Setter.Value>
|
|
</Setter>
|
|
</Style>
|
|
|
|
<Style
|
|
x:Key="ButtonRedoStyle2"
|
|
BasedOn="{StaticResource PrimaryButton}"
|
|
TargetType="{x:Type Button}">
|
|
<Setter Property="Width" Value="25" />
|
|
<Setter Property="Height" Value="25" />
|
|
<Setter Property="Margin" Value="3" />
|
|
<Setter Property="Content">
|
|
<Setter.Value>
|
|
<Image
|
|
Width="20"
|
|
Height="18"
|
|
Margin="0,3,0,0"
|
|
HorizontalAlignment="Center"
|
|
VerticalAlignment="Center"
|
|
Source="..\..\Ressources\Icons\Undo.png" />
|
|
</Setter.Value>
|
|
</Setter>
|
|
<Setter Property="RenderTransform">
|
|
<Setter.Value>
|
|
<TransformGroup>
|
|
<ScaleTransform ScaleX="-1" />
|
|
<TranslateTransform X="25" />
|
|
</TransformGroup>
|
|
</Setter.Value>
|
|
</Setter>
|
|
</Style>
|
|
</ResourceDictionary> |