-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMainWindow.xaml
16 lines (15 loc) · 1.03 KB
/
MainWindow.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<Window x:Class="WatsonTouch.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:WatsonTouch"
mc:Ignorable="d"
Title="Watson Touch" Height="100" Width="300" StateChanged="Window_StateChanged" Closed="Window_Closed">
<Grid>
<StackPanel HorizontalAlignment="Center" VerticalAlignment="Center">
<CheckBox x:Name="AutoStartCheckBox" HorizontalAlignment="Center" VerticalAlignment="Center" Unchecked="AutoStartCheckBox_Unchecked" Checked="AutoStartCheckBox_Checked" Content="Auto start"/>
<Slider ValueChanged="Slider_ValueChanged" Value="10" Margin="10" Width="200" Maximum="100" Minimum="10" SmallChange="50" LargeChange="100" AutoToolTipPlacement="TopLeft" Cursor="Cross" />
</StackPanel>
</Grid>
</Window>