-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathMainWindow.xaml
More file actions
executable file
·33 lines (29 loc) · 1.29 KB
/
MainWindow.xaml
File metadata and controls
executable file
·33 lines (29 loc) · 1.29 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
31
32
33
<Window x:Class="PrefabVideoCapture.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="350" Width="525"
Loaded="Window_Loaded" Topmost="True">
<Grid>
<ToggleButton
Name="RecordButton"
IsEnabled="False"
Width="100"
Height="50"
Content="Record"
Checked="ToggleButton_Checked"
Unchecked="ToggleButton_Unchecked"
VerticalAlignment="Bottom"
HorizontalAlignment="Right"></ToggleButton>
<Button Name="SelectAWindowButton"
Width="160"
Height="50"
Content="Select a Window to Record"
VerticalAlignment="Bottom"
HorizontalAlignment="Left"
Click="SelectAWindowButton_Click"
></Button>
<CheckBox Name="UsePrintWindow" Content="Use Print Window" HorizontalAlignment="Center"
VerticalAlignment="Bottom" Checked="UsePrintWindow_Checked_1"
Unchecked="UsePrintWindow_Unchecked_1" IsChecked="True"></CheckBox>
</Grid>
</Window>