-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathWindow1.xaml
More file actions
30 lines (19 loc) · 1.14 KB
/
Copy pathWindow1.xaml
File metadata and controls
30 lines (19 loc) · 1.14 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
<Window x:Class="Microsoft.Samples.Kinect.BodyBasics.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" mc:Ignorable="d"
xmlns:local="clr-namespace:Microsoft.Samples.Kinect.BodyBasics"
WindowStyle="None"
WindowState="Maximized"
Loaded="MainWindow_Loaded"
d:DesignWidth="1366.46" d:DesignHeight="766.836">
<StackPanel>
<Canvas MouseDown="canvas_MouseDown" x:Name="canvas" Background="Transparent"
Height="768" Width="1366" Margin="0,0,0,0">
<Viewbox Height="1080" Width="1920" Margin="0,0,0,0">
<Image Source="{Binding ImageSource2}" Stretch="None" />
</Viewbox>
<Button x:Name="button" Content="Calibrate" HorizontalAlignment="Left" VerticalAlignment="Top" Width="75" Margin="654,649,0,0" Click="button_Click"/>
</Canvas>
</StackPanel>
</Window>