Esempio n. 1
0
 protected virtual void OnSystemNotification(IMPSystemNotificationEventArg e)
 {
     if (SystemNotificationEvent != null)
     {
         SystemNotificationEvent(this, e);
     }
 }
Esempio n. 2
0
 private void ImperaturContainer_SystemNotificationEvent(object sender, IMPSystemNotificationEventArg e)
 {
     if (oWaitLoadingSystem.Visible)
     {
         oWaitLoadingSystem.SetSystemNotificationText(e.Message);
         oWaitLoadingSystem.Refresh();
     }
 }
Esempio n. 3
0
        private void M_Ic_SystemNotificationEvent(object sender, IMPSystemNotificationEventArg e)
        {
            if (oWaitLoadingSystem.Visible)
            {
                oWaitLoadingSystem.SetSystemNotificationText(e.Message);
                oWaitLoadingSystem.Refresh();
            }

            this.Invoke(new MethodInvoker(delegate
            {
                toolStripStatusLabel_Notification.Text = e.Message;
            }));
        }
Esempio n. 4
0
 private void M_oTradeAutomation_SystemNotificationEvent(object sender, IMPSystemNotificationEventArg e)
 {
     OnSystemNotification(e);
 }
Esempio n. 5
0
 private static void M_oImperaturMarket_SystemNotificationEvent(object sender, IMPSystemNotificationEventArg e)
 {
     SystemNotificationEvent(sender, e);
 }