예제 #1
0
 private static void OnExportNotifyItem(
     ItemBox _sender,
     ref IBNotifyItemData _info)
 {
     if (_sender.mEventNotifyItem != null)
     {
         _sender.mEventNotifyItem(
             _sender,
             ref _info);
     }
 }
예제 #2
0
        private static void OnExportNotifyItem(
            IntPtr _sender,
            ref IBNotifyItemData _info)
        {
            ListBox sender = (ListBox)BaseWidget.GetByNative(_sender);

            if (sender.mEventNotifyItem != null)
            {
                sender.mEventNotifyItem(
                    sender,
                    ref _info);
            }
        }
예제 #3
0
        private static void OnExportNotifyItem(
			 ItemBox _sender ,
			ref IBNotifyItemData _info )
        {
            if (_sender.mEventNotifyItem != null)
                _sender.mEventNotifyItem(
                     _sender ,
                    ref _info );
        }
예제 #4
0
 static void box_EventNotifyItem(ItemBox _sender, ref IBNotifyItemData _info)
 {
     Export.DebugOut("EventNotifyItem  notify=" + _info.notify.ToString());
 }
예제 #5
0
        private static void OnExportNotifyItem(
			IntPtr _sender,
			ref IBNotifyItemData _info)
        {
            ItemBox sender = (ItemBox)BaseWidget.GetByNative(_sender);

            if (sender.mEventNotifyItem != null)
                sender.mEventNotifyItem(
                    sender ,
                    ref _info);
        }
예제 #6
0
 static void box_EventNotifyItem(ItemBox _sender, ref IBNotifyItemData _info)
 {
     Gui.Instance.Log("TestApp", LogLevel.Info, "EventNotifyItem  notify=" + _info.notify.ToString());
 }