forked from iodes/GSharp
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathGControl.cs
80 lines (72 loc) · 1.74 KB
/
GControl.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
using System;
using GSharp.Extension.Abstracts;
using GSharp.Extension.Exports;
namespace GSharp.Extension
{
[Serializable]
public class GControl
{
#region 속성
public GExport[] Exports
{
get
{
return _Exports;
}
}
private GExport[] _Exports;
public GExtension Parent
{
get
{
return _Parent;
}
}
private GExtension _Parent;
public Type Source
{
get
{
return _Source;
}
}
private Type _Source;
public string FriendlyName
{
get
{
return _FriendlyName;
}
}
private string _FriendlyName;
public string NamespaceName
{
get
{
return _NamespaceName;
}
}
private string _NamespaceName;
#endregion
#region 생성자
public GControl(Type source, string friendlyName, string namespaceName, GExport[] exports = null)
{
_Source = source;
_FriendlyName = friendlyName;
_NamespaceName = namespaceName;
_Exports = exports;
}
public GControl(GExtension parent, Type source, string friendlyName, string namespaceName, GExport[] exports = null)
: this(source, friendlyName, namespaceName, exports)
{
_Parent = parent;
}
#endregion
#region 사용자 함수
public GView LoadView()
{
return Activator.CreateInstance(Source) as GView;
}
#endregion
}
}