forked from tillias/wpFolderPicker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFolderPickerDialog.xaml.cs
86 lines (74 loc) · 2.27 KB
/
FolderPickerDialog.xaml.cs
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
using System.Windows;
using System.Windows.Interop;
namespace FolderPickerLib
{
/// <summary>
/// Interaction logic for FolderPickerDialog.xaml
/// </summary>
public partial class FolderPickerDialog : Window
{
#region Dependency properties
public static readonly DependencyProperty ItemContainerStyleProperty =
DependencyProperty.Register("ItemContainerStyle", typeof(Style), typeof(FolderPickerDialog));
public Style ItemContainerStyle
{
get
{
return (Style)GetValue(ItemContainerStyleProperty);
}
set
{
SetValue(ItemContainerStyleProperty, value);
}
}
private static void OnItemContainerStyleChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
{
var control = d as FolderPickerDialog;
if (control != null)
{
control.ItemContainerStyle = e.NewValue as Style;
}
}
#endregion
public string SelectedPath { get; private set; }
public string InitialPath
{
get
{
return FolderPickerControl.InitialPath;
}
set
{
FolderPickerControl.InitialPath = value;
}
}
public FolderPickerDialog()
{
InitializeComponent();
}
private void OkButton_Click(object sender, RoutedEventArgs e)
{
SelectedPath = FolderPickerControl.SelectedPath;
DialogResult = true;
}
private void CancelButton_Click(object sender, RoutedEventArgs e)
{
if (ComponentDispatcher.IsThreadModal)
{
DialogResult = false;
}
else
{
Close();
}
}
private void CreateButton_Click(object sender, RoutedEventArgs e)
{
FolderPickerControl.CreateNewFolder();
}
private void RefreshButton_Click(object sender, RoutedEventArgs e)
{
FolderPickerControl.RefreshTree();
}
}
}