Esempio n. 1
0
 internal static BaseWidget RequestWrapTextBox(BaseWidget _parent, IntPtr _widget)
 {
     TextBox widget = new TextBox();
     widget.WrapWidget(_parent, _widget);
     return widget;
 }
Esempio n. 2
0
 internal static BaseWidget RequestCreateTextBox(BaseWidget _parent, WidgetStyle _style, string _skin, IntCoord _coord, Align _align, string _layer, string _name)
 {
     TextBox widget = new TextBox();
     widget.CreateWidget(_parent, _style, _skin, _coord, _align, _layer, _name);
     return widget;
 }