Esempio n. 1
0
 //Constructor
 public UEditorWidgetTextBase(eWidgetType type)
     : base(type)
 {
     this.Margin.FromInt(4, 4, 2, 2);
     this.Border.FromInt(3, 3, 3, 3);
     this.Padding.FromInt(3, 3, 1, 2);
 }
Esempio n. 2
0
 //Constructor
 public UEditorWidgetBase(eWidgetType type)
     : base()
 {
     _widgetType = type;
 }
Esempio n. 3
0
 //Used by widgets that derive from this to pass their type down to the base class
 public UEditorWidgetLabel(eWidgetType type) : base(type)
 {
 }
Esempio n. 4
0
 //Constructor
 public UEditorPanelBase(eWidgetType type) : base(type)
 {
 }