| <!-- Car Needle template --> |
| <ControlTemplate x:Key="CarNeedleTemplate" TargetType="gauge:Needle"> |
| <Grid x:Name="PART_Grid" HorizontalAlignment="Stretch" VerticalAlignment="Stretch"> |
| <Grid.ColumnDefinitions> |
| <ColumnDefinition Width="*"/> |
| <!-- Column 0 - tail --> |
| |
| <ColumnDefinition Width="*"/> |
| <!-- Column 1 - pin point --> |
| <ColumnDefinition Width="5*" /> |
| <ColumnDefinition Width="15*" /> |
| <ColumnDefinition Width="20*" /> |
| <ColumnDefinition Width="60*" /> |
| </Grid.ColumnDefinitions> |
| |
| <Grid.RowDefinitions> |
| <RowDefinition Height="20*" /> |
| <RowDefinition Height="20*" /> |
| <RowDefinition Height="20*" /> |
| <RowDefinition Height="20*" /> |
| <RowDefinition Height="20*" /> |
| </Grid.RowDefinitions> |
| |
| <Ellipse Grid.Column="1" Grid.Row="0" Grid.RowSpan="5" |
| Stroke="Red" StrokeThickness="0" Stretch="Fill"> |
| <Ellipse.Fill> |
| <LinearGradientBrush StartPoint="0.5,1" EndPoint="0.5,0"> |
| <GradientStop Color="#FF979797" Offset="0"/> |
| <GradientStop Color="#FF000000" Offset="1"/> |
| <GradientStop Color="#FF434343" Offset="0.377"/> |
| <GradientStop Color="#FF474747" Offset="0.594"/> |
| </LinearGradientBrush> |
| </Ellipse.Fill> |
| </Ellipse> |
| |
| <Ellipse Grid.Column="1" Grid.ColumnSpan="3" Grid.Row="1" Grid.RowSpan="3" |
| Stretch="Fill" Stroke="Yellow" StrokeThickness="0"> |
| <Ellipse.Fill> |
| <LinearGradientBrush StartPoint="0.5,1" EndPoint="0.5,0"> |
| <GradientStop Color="#FF979797" Offset="0"/> |
| <GradientStop Color="#FF000000" Offset="1"/> |
| <GradientStop Color="#FF434343" Offset="0.377"/> |
| <GradientStop Color="#FF474747" Offset="0.594"/> |
| </LinearGradientBrush> |
| </Ellipse.Fill> |
| </Ellipse> |
| |
| <Path Grid.ColumnSpan="2" Grid.Row="2" Grid.Column="1" Stretch="Fill" StrokeThickness="0"> |
| <Path.Data> |
| <PathGeometry> |
| <PathFigure StartPoint="0,0"> |
| <LineSegment Point="1,0" /> |
| <LineSegment Point="1,1" /> |
| <LineSegment Point="0,1" /> |
| <LineSegment Point="0,0" /> |
| </PathFigure> |
| </PathGeometry> |
| </Path.Data> |
| <Path.Fill> |
| <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0"> |
| <GradientStop Color="#FF0C0C0C" Offset="0"/> |
| <GradientStop Color="#FF000000" Offset="1"/> |
| <GradientStop Color="#FF292929" Offset="0.148"/> |
| <GradientStop Color="#FFA3A3A3" Offset="0.365"/> |
| <GradientStop Color="#FF353535" Offset="0.631"/> |
| </LinearGradientBrush> |
| </Path.Fill> |
| </Path> |
| <Path Grid.ColumnSpan="4" Grid.Row="2" Grid.Column="2" Stretch="Fill" StrokeThickness="0"> |
| <Path.Data> |
| <PathGeometry> |
| <PathFigure StartPoint="1,0.5"> |
| <LineSegment Point="0.1,0.8" /> |
| <ArcSegment Point="0.1,0.2" Size="0.03,0.03" SweepDirection="Clockwise"/> |
| <LineSegment Point="1,0.5" /> |
| </PathFigure> |
| </PathGeometry> |
| </Path.Data> |
| <Path.Fill> |
| <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0"> |
| <GradientStop Color="#FFFF8D79" Offset="0"/> |
| <GradientStop Color="#FFE43A10" Offset="1"/> |
| <GradientStop Color="#FFF8785F" Offset="0.148"/> |
| <GradientStop Color="#FFF9AC9C" Offset="0.365"/> |
| <GradientStop Color="#FFF46F54" Offset="0.631"/> |
| </LinearGradientBrush> |
| </Path.Fill> |
| </Path> |
| </Grid> |
| </ControlTemplate> |
| |
| <Style x:Key="CarNeedleStyle" TargetType="gauge:Needle"> |
| <Setter Property="Location" Value="OverCenter" /> |
| <Setter Property="RelativeHeight" Value="0.4" /> |
| <Setter Property="RelativeShift" Value="0" /> |
| <Setter Property="Template" Value="{StaticResource CarNeedleTemplate}" /> |
| </Style> |
| |