eDosStationFull/eDosStation/TimeColor.xaml

33 lines
1.3 KiB
Text
Raw Normal View History

2026-08-18 12:15:26 +02:00
<UserControl x:Class="eDosStation.TimeColor"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:eDosStation"
mc:Ignorable="d"
d:DesignHeight="450" d:DesignWidth="800">
<UserControl.Resources>
</UserControl.Resources>
<Rectangle>
<Rectangle.Fill>
<LinearGradientBrush StartPoint="0.5,0" EndPoint="0.5,4" >
<LinearGradientBrush.Transform>
<TransformGroup>
<ScaleTransform/>
<SkewTransform/>
<RotateTransform Angle="-90"/>
<TranslateTransform/>
</TransformGroup>
</LinearGradientBrush.Transform>
<GradientStop Color="Green" />
<GradientStop Color="Yellow" Offset="0.2" />
<GradientStop Color="Red" Offset="0.7"/>
</LinearGradientBrush>
</Rectangle.Fill>
</Rectangle>
</UserControl>