Ejemplo n.º 1
0
 internal static BaseWidget RequestWrapImageBox(BaseWidget _parent, IntPtr _widget)
 {
     ImageBox widget = new ImageBox();
     widget.WrapWidget(_parent, _widget);
     return widget;
 }
Ejemplo n.º 2
0
        internal static BaseWidget RequestCreateImageBox(BaseWidget _parent, WidgetStyle _style, string _skin, IntCoord _coord, Align _align, string _layer, string _name)
        {
			ImageBox widget = new ImageBox();
			widget.CreateWidgetImpl(_parent, _style, _skin, _coord, _align, _layer, _name);
            return widget;
        }
Ejemplo n.º 3
0
 internal static BaseWidget RequestCreateImageBox(BaseWidget _parent, WidgetStyle _style, string _skin, IntCoord _coord, Align _align, string _layer, string _name)
 {
     ImageBox widget = new ImageBox();
     widget.CreateWidgetImpl(_parent, _style, _skin, _coord, _align, _layer, _name);
     return widget;
 }
Ejemplo n.º 4
0
        internal static BaseWidget RequestWrapImageBox(BaseWidget _parent, IntPtr _widget)
        {
			ImageBox widget = new ImageBox();
			widget.WrapWidget(_parent, _widget);
            return widget;
        }