SymbolStencils.xaml
1.91 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:s="clr-namespace:RoboforkApp">
<s:Toolbox x:Key="SymbolStencils"
DefaultItemSize="55,55">
<ItemsControl.Items>
<Image IsHitTestVisible="False"
Stretch="Fill"
Source="../Images/cross.png" />
<Image IsHitTestVisible="False"
Stretch="Fill"
Source="../Images/chart2.png" />
<Image IsHitTestVisible="False"
Stretch="Fill"
Source="../Images/chart1.png" />
<Image IsHitTestVisible="False"
Stretch="Fill"
Source="../Images/chart3.png" />
<Image IsHitTestVisible="False"
Stretch="Fill"
Source="../Images/attention.png" />
<Image IsHitTestVisible="False"
Stretch="Fill"
Source="../Images/ring.png" />
<Image IsHitTestVisible="False"
Stretch="Fill"
Source="../Images/world.png" />
<Image IsHitTestVisible="False"
Stretch="Fill"
Source="../Images/walk.png" />
<Image IsHitTestVisible="False"
Stretch="Fill"
Source="../Images/mail.png" />
<Image IsHitTestVisible="False"
Stretch="Fill"
Source="../Images/software.png" />
<Image IsHitTestVisible="False"
Stretch="Fill"
Source="../Images/nuclear.png" />
<Image IsHitTestVisible="False"
Stretch="Fill"
Source="../Images/plus.png" />
</ItemsControl.Items>
</s:Toolbox>
</ResourceDictionary>