Exemplo n.º 1
0
 internal static BaseWidget RequestWrapProgressBar(BaseWidget _parent, IntPtr _widget)
 {
     ProgressBar widget = new ProgressBar();
     widget.WrapWidget(_parent, _widget);
     return widget;
 }
Exemplo n.º 2
0
 internal static BaseWidget RequestCreateProgressBar(BaseWidget _parent, WidgetStyle _style, string _skin, IntCoord _coord, Align _align, string _layer, string _name)
 {
     ProgressBar widget = new ProgressBar();
     widget.CreateWidgetImpl(_parent, _style, _skin, _coord, _align, _layer, _name);
     return widget;
 }