private static void OnExportListChangePosition(
     MultiListBox _sender,
     uint _index)
 {
     if (_sender.mEventListChangePosition != null)
     {
         _sender.mEventListChangePosition(
             _sender,
             _index);
     }
 }
Beispiel #2
0
        private static void OnExportListChangePosition(
            IntPtr _sender,
            uint _index)
        {
            MultiListBox sender = (MultiListBox)BaseWidget.GetByNative(_sender);

            if (sender.mEventListChangePosition != null)
            {
                sender.mEventListChangePosition(
                    sender,
                    _index);
            }
        }
 private static void OnExportListChangePosition(
     MultiListBox _sender ,
     uint _index)
 {
     if (_sender.mEventListChangePosition != null)
         _sender.mEventListChangePosition(
              _sender ,
              _index );
 }