Пример #1
0
 private static void OnExportListChangeScroll(
     ListBox _sender,
     uint _position)
 {
     if (_sender.mEventListChangeScroll != null)
     {
         _sender.mEventListChangeScroll(
             _sender,
             _position);
     }
 }
Пример #2
0
        private static void OnExportListChangeScroll(
            IntPtr _sender,
            uint _position)
        {
            ListBox sender = (ListBox)BaseWidget.GetByNative(_sender);

            if (sender.mEventListChangeScroll != null)
            {
                sender.mEventListChangeScroll(
                    sender,
                    _position);
            }
        }
Пример #3
0
        private static void OnExportListChangeScroll(
			 ListBox _sender ,
			 uint _position )
        {
            if (_sender.mEventListChangeScroll != null)
                _sender.mEventListChangeScroll(
                     _sender ,
                     _position );
        }