| | |
| | | InitializeComponent(); |
| | | |
| | | this._Parent = _Parent; |
| | | |
| | | rb_Pause.Checked = true; |
| | | |
| | | |
| | | UI_Update_Th = new Thread(UI_Update_Th_Set); |
| | | |
| | |
| | | #endregion |
| | | |
| | | #region Form Function |
| | | private void rb_Auto_CheckedChanged(object sender, EventArgs e) |
| | | { |
| | | RadioButton rb = (RadioButton)sender; |
| | | |
| | | if (!rb.Checked) return; |
| | | |
| | | switch (rb.Name) |
| | | { |
| | | case "rb_Auto": |
| | | { |
| | | _Parent._equip.Set_Equipment_Mode(En_Equipment_Mode.Auto); |
| | | break; |
| | | } |
| | | case "rb_Manual": |
| | | { |
| | | _Parent._equip.Set_Equipment_Mode(En_Equipment_Mode.Manual); |
| | | break; |
| | | } |
| | | case "rb_Pause": |
| | | { |
| | | _Parent._equip.Set_Equipment_Mode(En_Equipment_Mode.Pause); |
| | | break; |
| | | } |
| | | } |
| | | } |
| | | |
| | | |
| | | private void button1_Click(object sender, EventArgs e) |
| | | { |
| | | _Parent.sm.Set_Value(Process_Memory_Address.LD_Tray_In_Count, 0); |