-
Notifications
You must be signed in to change notification settings - Fork 0
/
MenuWindow.xaml
32 lines (30 loc) · 1.46 KB
/
MenuWindow.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
<Window x:Class="Microsoft.Samples.Kinect.RecordAndPlaybackBasics.MenuWindow"
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"
xmlns:local="clr-namespace:Microsoft.Samples.Kinect.RecordAndPlaybackBasics"
mc:Ignorable="d"
Title="選擇影片" Height="300" Width="300"
WindowStartupLocation="CenterOwner">
<Window.Resources>
</Window.Resources>
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="auto" />
<RowDefinition Height="*" />
</Grid.RowDefinitions>
<Grid Grid.Row="0">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*"/>
<ColumnDefinition Width="*"/>
<ColumnDefinition Width="auto"/>
</Grid.ColumnDefinitions>
<Button Grid.Column="0" x:Name="playButton" Click="PlayButton_Click">Play</Button>
<Button Grid.Column="1" x:Name="deleteButton" Click="DeleteButton_Click">Delete</Button>
<Grid Grid.Column="2" x:Name="outputGrid">
</Grid>
</Grid>
<ListBox Grid.Row="2" x:Name="MenuListBox" BorderBrush="Transparent" SelectionChanged="MenuListBox__SelectionChanged"/>
</Grid>
</Window>