forked from ahyahy/OneScriptForms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFileDialog.cs
More file actions
87 lines (74 loc) · 2.23 KB
/
FileDialog.cs
File metadata and controls
87 lines (74 loc) · 2.23 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
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
87
namespace osf
{
public class FileDialog : CommonDialog
{
private System.Windows.Forms.FileDialog m_FileDialog;
public FileDialog(System.Windows.Forms.FileDialog p1 = null)
{
}
public bool AddExtension
{
get { return M_FileDialog.AddExtension; }
set { M_FileDialog.AddExtension = value; }
}
public virtual bool CheckFileExists
{
get { return M_FileDialog.CheckFileExists; }
set { M_FileDialog.CheckFileExists = value; }
}
public bool CheckPathExists
{
get { return M_FileDialog.CheckPathExists; }
set { M_FileDialog.CheckPathExists = value; }
}
public string DefaultExt
{
get { return M_FileDialog.DefaultExt; }
set { M_FileDialog.DefaultExt = value; }
}
public bool DereferenceLinks
{
get { return M_FileDialog.DereferenceLinks; }
set { M_FileDialog.DereferenceLinks = value; }
}
public string FileName
{
get { return M_FileDialog.FileName; }
set { M_FileDialog.FileName = value; }
}
public string Filter
{
get { return M_FileDialog.Filter; }
set { M_FileDialog.Filter = value; }
}
public int FilterIndex
{
get { return M_FileDialog.FilterIndex; }
set { M_FileDialog.FilterIndex = value; }
}
public string InitialDirectory
{
get { return M_FileDialog.InitialDirectory; }
set { M_FileDialog.InitialDirectory = value; }
}
public System.Windows.Forms.FileDialog M_FileDialog
{
get { return m_FileDialog; }
set
{
m_FileDialog = value;
base.M_CommonDialog = m_FileDialog;
}
}
public bool RestoreDirectory
{
get { return M_FileDialog.RestoreDirectory; }
set { M_FileDialog.RestoreDirectory = value; }
}
public string Title
{
get { return M_FileDialog.Title; }
set { M_FileDialog.Title = value; }
}
}
}