Esempio n. 1
0
 /// <summary>
 /// 機台本地信息設置點擊事件
 /// </summary>
 protected void OnMachineNoClickEvent(UserControlEventBaseInfo<string> e)
 {
     if (this.MachineNoClickEvent != null)
     {
         this.MachineNoClickEvent(this, e);
     }
 }
Esempio n. 2
0
        /// <summary>
        /// 機台編號點擊事件
        /// </summary>
        /// <param name="machineNo">機台編號</param>
        void OnMachineNoClick(string machineNo)
        {
            this.RemoveMachineMessage(machineNo);

            if (this.MachineNoClickEvent != null)
            {
                UserControlEventBaseInfo<string> e = new UserControlEventBaseInfo<string>();
                e.ObjectInformation = machineNo;
                this.MachineNoClickEvent(this, e);
            }
        }