-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChooseFolderWindow.xaml
More file actions
18 lines (16 loc) · 918 Bytes
/
ChooseFolderWindow.xaml
File metadata and controls
18 lines (16 loc) · 918 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<Window x:Class="LAVtechQuickRecover.ChooseFolderWindow"
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:LAVtechQuickRecover"
mc:Ignorable="d"
Title="ChooseFolderWindow" Height="450" Width="450" WindowStyle="ToolWindow">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="11*"/>
</Grid.ColumnDefinitions>
<TreeView x:Name="SelectFolderTreeView" Margin="30,30,30,77"/>
<Button Content="Accept" HorizontalAlignment="Left" Margin="281,362,0,0" VerticalAlignment="Top" Width="139" RenderTransformOrigin="-0.164,0.336" Height="35" Click="Button_Click"/>
</Grid>
</Window>