-
Notifications
You must be signed in to change notification settings - Fork 0
/
MainWindow.xaml
18 lines (18 loc) · 1.08 KB
/
MainWindow.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<Window x:Class="KinectStreams.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Kinect | Color, Depth, Infrared" Height="1080" Width="1920" Loaded="Window_Loaded" Closed="Window_Closed">
<Grid>
<Image Name="camera" />
<Canvas Name="canvas" />
<Grid Style="{StaticResource GridButtonsStyle}">
<StackPanel Style="{StaticResource StackPanelButtonsStyle}">
<Button Content="Color" Style="{StaticResource ButtonStyle}" Click="Color_Click" />
<Button Content="Depth" Style="{StaticResource ButtonStyle}" Click="Depth_Click" />
<Button Content="Infrared" Style="{StaticResource ButtonStyle}" Click="Infrared_Click" />
<Button Content="Body" Style="{StaticResource ButtonStyle}" Click="Body_Click" />
<Button x:Name="recordButton" Content="Record" Style="{StaticResource ButtonStyle}" Click="Record_Click" />
</StackPanel>
</Grid>
</Grid>
</Window>