示例#1
0
 protected void onInterfaceInteraction(applyUpdateInterfaceInteractionEventArgs e)
 {
     if (interfaceInteraction != null)
     {
         interfaceInteraction(this, e);
     }
 }
示例#2
0
 private void action_interfaceInteraction(object sender, applyUpdateInterfaceInteractionEventArgs e)
 {
     if (interfaceInteraction != null)
     {
         interfaceInteraction(sender, e);
     }
 }
示例#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);
		}
示例#5
0
		protected void onInterfaceInteraction(applyUpdateInterfaceInteractionEventArgs e) {
			if (interfaceInteraction != null)
				interfaceInteraction(this, e);
		}