Ejemplo n.º 1
0
 internal static BaseWidget RequestWrapScrollBar(BaseWidget _parent, IntPtr _widget)
 {
     ScrollBar widget = new ScrollBar();
     widget.WrapWidget(_parent, _widget);
     return widget;
 }
Ejemplo n.º 2
0
 internal static BaseWidget RequestCreateScrollBar(BaseWidget _parent, WidgetStyle _style, string _skin, IntCoord _coord, Align _align, string _layer, string _name)
 {
     ScrollBar widget = new ScrollBar();
     widget.CreateWidgetImpl(_parent, _style, _skin, _coord, _align, _layer, _name);
     return widget;
 }
Ejemplo n.º 3
0
 static void scroll_EventScrollChangePosition(ScrollBar _sender, uint _position)
 {
     Gui.Instance.Log("TestApp", LogLevel.Info, "EventScrollChangePosition  position=" + _position.ToString());
 }
Ejemplo n.º 4
0
 private static void OnExportScrollChangePosition(
     ScrollBar _sender ,
     uint _position)
 {
     if (_sender.mEventScrollChangePosition != null)
         _sender.mEventScrollChangePosition(
              _sender ,
              _position );
 }
Ejemplo n.º 5
0
 static void scroll_EventScrollChangePosition(ScrollBar _sender, uint _position)
 {
     Export.DebugOut("EventScrollChangePosition  position=" + _position.ToString());
 }