forked from ahyahy/OneScriptForms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCommonDialog.cs
More file actions
35 lines (26 loc) · 804 Bytes
/
CommonDialog.cs
File metadata and controls
35 lines (26 loc) · 804 Bytes
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
namespace osf
{
public class CommonDialog : Component
{
public System.Windows.Forms.CommonDialog M_CommonDialog;
public CommonDialog()
{
}
public CommonDialog(System.Windows.Forms.CommonDialog p1)
{
M_CommonDialog = p1;
base.M_Component = M_CommonDialog;
}
public CommonDialog(osf.CommonDialog p1)
{
M_CommonDialog = p1.M_CommonDialog;
base.M_Component = M_CommonDialog;
}
//Свойства============================================================
//Методы============================================================
public int ShowDialog()
{
return (int)M_CommonDialog.ShowDialog();
}
}
}