-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMainWindow.xaml
38 lines (38 loc) · 950 Bytes
/
MainWindow.xaml
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
<Window
x:Class="Kopfnicken.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow"
Height="592"
Width="754"
Loaded="Window_Loaded"
Closed="Window_Closed"
ResizeMode="NoResize">
<Canvas
Height="453">
<Label
Canvas.Left="133"
Canvas.Top="0"
Content="--"
Name="_lblPosHead"
FontSize="56" />
<Label
Canvas.Left="12"
Canvas.Top="34"
Content="Head position:"
Height="28"
Name="_lblHeadPosDesc" />
<Label
Canvas.Left="133"
Canvas.Top="77"
Content="--"
FontSize="56"
Name="_lblPosRightHand" />
<Label
Canvas.Left="12"
Canvas.Top="111"
Content="Right Hand position:"
Height="28"
Name="label2" />
</Canvas>
</Window>