-
Notifications
You must be signed in to change notification settings - Fork 0
/
MainWindow.xaml
38 lines (38 loc) · 1.37 KB
/
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="AirControl.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="AirControl v1.1"
Height="600"
Width="800"
WindowState="Maximized">
<Viewbox Stretch="Uniform">
<Grid>
<Image Name="videoImage"
Width="640"
Height="480"></Image>
<Canvas Background="Transparent">
<Ellipse Fill="Red"
Height="20"
Width="20"
Name="ellipseLeftHand"
Stroke="White"
Canvas.Top="230"
Canvas.Left="310"/>
<Ellipse Fill="Red"
Height="20"
Width="20"
Name="ellipseRightHand"
Stroke="White"
Canvas.Top="230"
Canvas.Left="310"/>
<Ellipse Fill="Red"
Height="20"
Width="20"
Name="ellipseHead"
Stroke="White"
Canvas.Top="230"
Canvas.Left="310"/>
</Canvas>
</Grid>
</Viewbox>
</Window>