blob: 313a46355a9d91f09aff86319e7c0aaec8e1160c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:material="http://materialdesigninxaml.net/winfx/xaml/themes"
xmlns:controls="clr-namespace:Tango.FSE.Statistics.Controls"
xmlns:local="clr-namespace:Tango.FSE.Statistics.Themes">
<BitmapImage x:Key="jobImage" UriSource="../Images/cmyk.png" />
<Style TargetType="{x:Type controls:RangeProgressBar}">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type controls:RangeProgressBar}">
<Border x:Name="PART_OuterBorder" Background="{TemplateBinding Background}"
BorderBrush="{TemplateBinding BorderBrush}"
BorderThickness="{TemplateBinding BorderThickness}">
<Border x:Name="PART_InnerBorder" Background="{TemplateBinding FillBrush}">
</Border>
</Border>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</ResourceDictionary>
|