spc-kiosk-pb/Kiosk/Test/KioskTest/MainWindow.xaml

29 lines
2.2 KiB
Plaintext
Raw Normal View History

2019-06-16 05:12:09 +00:00
<Window x:Class="TestProject.MainWindow"
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:TestProject"
mc:Ignorable="d"
Title="SPC.Kiosk.Test" Height="350" Width="340" WindowStyle="ToolWindow">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="1*"/>
<ColumnDefinition Width="1*"/>
</Grid.ColumnDefinitions>
<Button Name="btnStartWin0" Click="BtnStartWin0_Click" Grid.Row="0" Grid.Column="0" Content="Normal Full Screen" Width="120" Height="40" HorizontalAlignment="Left" VerticalAlignment="Top" Margin="20,20,0,0" />
<Button Name="btnStartWin1" Click="BtnStartWin1_Click" Grid.Row="1" Grid.Column="0" Content="Screen 1 (768x1024)" Width="120" Height="40" HorizontalAlignment="Left" VerticalAlignment="Top" Margin="20,20,0,0" />
<Button Name="btnStartWin2" Click="BtnStartWin2_Click" Grid.Row="2" Grid.Column="0" Content="Screen 2 (768x1440)" Width="120" Height="40" HorizontalAlignment="Left" VerticalAlignment="Top" Margin="20,20,0,0" />
<Button Name="btnStartWin3" Click="BtnStartWin3_Click" Grid.Row="3" Grid.Column="0" Content="Screen 3 (FullScreen)" Width="120" Height="40" HorizontalAlignment="Left" VerticalAlignment="Top" Margin="20,20,0,0" />
<Button Name="btnStartWin4" Click="BtnStartWin4_Click" Grid.Row="4" Grid.Column="0" Content="Screen 3 (768x1024)" Width="120" Height="40" HorizontalAlignment="Left" VerticalAlignment="Top" Margin="20,20,0,0" />
<Button Name="btnPBWin0" Click="BtnPBWin0_Click" Grid.Row="0" Grid.Column="1" Content="PB Full Screen" Width="120" Height="40" HorizontalAlignment="Left" VerticalAlignment="Top" Margin="20,20,0,0" />
</Grid>
</Window>