blob: 46c8d97484de945996b558bfd47d44a3d2ceab66 (
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
27
28
29
30
31
32
33
|
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:Tango.FSE.Common.Controls">
<Style TargetType="{x:Type local:MachineIconFull}">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type local:MachineIconFull}">
<Border Background="{TemplateBinding Background}"
BorderBrush="{TemplateBinding BorderBrush}"
BorderThickness="{TemplateBinding BorderThickness}">
<Image RenderOptions.BitmapScalingMode="Fant">
<Image.Style>
<Style TargetType="Image">
<Setter Property="Source" Value="{StaticResource FSE_Machine_Full}"></Setter>
<Style.Triggers>
<DataTrigger Binding="{Binding MachineType}" Value="1">
<Setter Property="Source" Value="{StaticResource FSE_Machine_Eureka_Full}"></Setter>
</DataTrigger>
<DataTrigger Binding="{Binding MachineType}" Value="2">
<Setter Property="Source" Value="{StaticResource FSE_Machine_X1_Full}"></Setter>
</DataTrigger>
</Style.Triggers>
</Style>
</Image.Style>
</Image>
</Border>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</ResourceDictionary>
|