Esempio n. 1
0
 protected void onInterfaceInteraction(applyUpdateInterfaceInteractionEventArgs e)
 {
     if (interfaceInteraction != null)
     {
         interfaceInteraction(this, e);
     }
 }
Esempio n. 2
0
 private void action_interfaceInteraction(object sender, applyUpdateInterfaceInteractionEventArgs e)
 {
     if (interfaceInteraction != null)
     {
         interfaceInteraction(sender, e);
     }
 }
Esempio n. 3
0
		private void m_updateManager_interfaceInteraction(object sender, applyUpdateInterfaceInteractionEventArgs e) {
			if (m_updateManager.currentConfig.Settings.showTaskBarProgress) {
				prgUpdate.State = e.progressBarState;
			}
		}
		private void action_interfaceInteraction(object sender, applyUpdateInterfaceInteractionEventArgs e) {
			if (interfaceInteraction != null)
				interfaceInteraction(sender, e);
		}
Esempio n. 5
0
		protected void onInterfaceInteraction(applyUpdateInterfaceInteractionEventArgs e) {
			if (interfaceInteraction != null)
				interfaceInteraction(this, e);
		}