-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOptionsWindow.xaml
More file actions
16 lines (15 loc) · 1.14 KB
/
Copy pathOptionsWindow.xaml
File metadata and controls
16 lines (15 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<Window x:Class="TrackPrintScreen.OptionsWindow"
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:TrackPrintScreen"
mc:Ignorable="d"
Title="OptionsWindow" Height="351.923" Width="437.019" Loaded="Window_Loaded">
<Grid>
<TextBox x:Name="SavePathTextBox" HorizontalAlignment="Left" Height="59" Margin="10,47,0,0" TextWrapping="Wrap" Text="" VerticalAlignment="Top" Width="409"/>
<Label x:Name="label" Content="Save path:" HorizontalAlignment="Left" Margin="10,21,0,0" VerticalAlignment="Top"/>
<Button x:Name="SaveButton" Content="Save" HorizontalAlignment="Left" Margin="188,228,0,0" VerticalAlignment="Top" Width="75" Click="SaveButton_Click"/>
<Button x:Name="BrowseSavePathButton" Content="Browse" HorizontalAlignment="Left" Margin="79,21,0,0" VerticalAlignment="Top" Width="75" Click="BrowseSavePathButton_Click"/>
</Grid>
</Window>