private static void OnExportListChangeScroll( ListBox _sender, uint _position) { if (_sender.mEventListChangeScroll != null) { _sender.mEventListChangeScroll( _sender, _position); } }
private static void OnExportListChangeScroll( IntPtr _sender, uint _position) { ListBox sender = (ListBox)BaseWidget.GetByNative(_sender); if (sender.mEventListChangeScroll != null) { sender.mEventListChangeScroll( sender, _position); } }
private static void OnExportListChangeScroll( ListBox _sender , uint _position ) { if (_sender.mEventListChangeScroll != null) _sender.mEventListChangeScroll( _sender , _position ); }