수정중
							parent
							
								
									ef4f95e96d
								
							
						
					
					
						commit
						47a45a1f36
					
				
											
												
													File diff suppressed because it is too large
													Load Diff
												
											
										
									
								|  | @ -75,7 +75,6 @@ namespace INT_PT002.Controls | ||||||
| 
 | 
 | ||||||
|             this.CollectionLabelProgress = new Collection<SmartLabel>(); |             this.CollectionLabelProgress = new Collection<SmartLabel>(); | ||||||
|             this.CollectionLabelProgress.Clear(); |             this.CollectionLabelProgress.Clear(); | ||||||
|             this.CollectionLabelProgress.Add(this.labelProgress0); |  | ||||||
|             this.CollectionLabelProgress.Add(this.labelProgress1); |             this.CollectionLabelProgress.Add(this.labelProgress1); | ||||||
|             this.CollectionLabelProgress.Add(this.labelProgress2); |             this.CollectionLabelProgress.Add(this.labelProgress2); | ||||||
|             this.CollectionLabelProgress.Add(this.labelProgress3); |             this.CollectionLabelProgress.Add(this.labelProgress3); | ||||||
|  | @ -83,6 +82,9 @@ namespace INT_PT002.Controls | ||||||
|             this.CollectionLabelProgress.Add(this.labelProgress6); |             this.CollectionLabelProgress.Add(this.labelProgress6); | ||||||
|             this.CollectionLabelProgress.Add(this.labelProgress7); |             this.CollectionLabelProgress.Add(this.labelProgress7); | ||||||
|             this.CollectionLabelProgress.Add(this.labelProgress8); |             this.CollectionLabelProgress.Add(this.labelProgress8); | ||||||
|  |             this.CollectionLabelProgress.Add(this.labelProgress9); | ||||||
|  |             this.CollectionLabelProgress.Add(this.labelProgress10); | ||||||
|  |             this.CollectionLabelProgress.Add(this.labelProgress11); | ||||||
| 
 | 
 | ||||||
|             this.CollectionLabelResult = new Collection<SmartLabel>(); |             this.CollectionLabelResult = new Collection<SmartLabel>(); | ||||||
|             this.CollectionLabelResult.Add(this.labelResult1); |             this.CollectionLabelResult.Add(this.labelResult1); | ||||||
|  | @ -278,91 +280,160 @@ namespace INT_PT002.Controls | ||||||
|             this.CollectionLabelProgress[index].BackGroundColor = this.ColorProgressOff; |             this.CollectionLabelProgress[index].BackGroundColor = this.ColorProgressOff; | ||||||
|         } |         } | ||||||
| 
 | 
 | ||||||
|         public void UpdateProcessStatusDisplay(Define.E_ProcessStatus status) |         public void UpdateDisplayProcessStatus(Define.E_ProcessStatus status) | ||||||
|         { |         { | ||||||
|             switch (this.PreviousStageNum) |  | ||||||
|             { |  | ||||||
|                 case Define.E_ProcessStatus._0_None: |  | ||||||
|                     break; |  | ||||||
|                 case Define.E_ProcessStatus._1_Ready: |  | ||||||
|                     this.UnselectProcessLabelRefresh(0); |  | ||||||
|                     break; |  | ||||||
|                 case Define.E_ProcessStatus._2_ProductEntry: |  | ||||||
|                     this.UnselectProcessLabelRefresh(1); |  | ||||||
|                     break; |  | ||||||
|                 case Define.E_ProcessStatus._3_MoveToLeak: |  | ||||||
|                     this.UnselectProcessLabelRefresh(2); |  | ||||||
|                     break; |  | ||||||
|                 case Define.E_ProcessStatus._4_MoveToCheck: |  | ||||||
|                     this.UnselectProcessLabelRefresh(3); |  | ||||||
|                     break; |  | ||||||
|                 case Define.E_ProcessStatus._5_ChamberMerge: |  | ||||||
|                     this.UnselectProcessLabelRefresh(4); |  | ||||||
|                     break; |  | ||||||
|                 case Define.E_ProcessStatus._6_VacuumStart: |  | ||||||
|                     break; |  | ||||||
|                 case Define.E_ProcessStatus._7_VacuumHold: |  | ||||||
|                     this.UnselectProcessLabelRefresh(5); |  | ||||||
|                     break; |  | ||||||
|                 case Define.E_ProcessStatus._8_Judgment: |  | ||||||
|                     this.UnselectProcessLabelRefresh(6); |  | ||||||
|                     break; |  | ||||||
|                 case Define.E_ProcessStatus._9_VacuumBreak: |  | ||||||
|                     this.UnselectProcessLabelRefresh(7); |  | ||||||
|                     break; |  | ||||||
|                 default: |  | ||||||
|                     break; |  | ||||||
|             } |  | ||||||
| 
 |  | ||||||
|             switch (status) |             switch (status) | ||||||
|             { |             { | ||||||
|                 case Define.E_ProcessStatus._0_None: |                 case Define.E_ProcessStatus._0_None: | ||||||
|                     break; |                     break; | ||||||
|                 case Define.E_ProcessStatus._1_Ready: |                 case Define.E_ProcessStatus._1_Ready: | ||||||
|                     this.UnselectProcessLabelRefresh(this.CollectionLabelProgress.Count - 1); |                     if (this.labelProgress1.BackGroundColor != this.ColorProgressOn) this.labelProgress1.BackGroundColor = this.ColorProgressOn; | ||||||
|                     this.SelectProcessLabelRefresh(0); |                     if (this.labelProgress2.BackGroundColor != this.ColorProgressOff) this.labelProgress2.BackGroundColor = this.ColorProgressOff; | ||||||
| 
 |                     if (this.labelProgress3.BackGroundColor != this.ColorProgressOff) this.labelProgress3.BackGroundColor = this.ColorProgressOff; | ||||||
|                     this.timerOn.Stop(); |                     if (this.labelProgress4.BackGroundColor != this.ColorProgressOff) this.labelProgress4.BackGroundColor = this.ColorProgressOff; | ||||||
|                     this.timerOff.Stop(); |                     if (this.labelProgress5.BackGroundColor != this.ColorProgressOff) this.labelProgress5.BackGroundColor = this.ColorProgressOff; | ||||||
| 
 |                     if (this.labelProgress6.BackGroundColor != this.ColorProgressOff) this.labelProgress6.BackGroundColor = this.ColorProgressOff; | ||||||
|                     //if (this.CollectionLabelResult[0].Text == "Measuring..") |                     if (this.labelProgress7.BackGroundColor != this.ColorProgressOff) this.labelProgress7.BackGroundColor = this.ColorProgressOff; | ||||||
|                     //{ |                     if (this.labelProgress8.BackGroundColor != this.ColorProgressOff) this.labelProgress8.BackGroundColor = this.ColorProgressOff; | ||||||
|                     //    for (int i = 0; i < this.ParentForm.ParentForm.CurrentSystemStatus.EquipmentColumn; i++) |                     if (this.labelProgress9.BackGroundColor != this.ColorProgressOff) this.labelProgress9.BackGroundColor = this.ColorProgressOff; | ||||||
|                     //    { |                     if (this.labelProgress10.BackGroundColor != this.ColorProgressOff) this.labelProgress10.BackGroundColor = this.ColorProgressOff; | ||||||
|                     //        this.CollectionLabelResult[i].Visible = true; |                     if (this.labelProgress11.BackGroundColor != this.ColorProgressOff) this.labelProgress11.BackGroundColor = this.ColorProgressOff; | ||||||
|                     //        this.CollectionLabelResult[i].Text = "-"; |  | ||||||
|                     //        this.CollectionLabelResult[i].TextColor = this.ColorResultNone; |  | ||||||
|                     //        this.CollectionLabelResult[i].Font = new Font("New Gulim", 48, FontStyle.Bold); |  | ||||||
|                     //    } |  | ||||||
|                     //} |  | ||||||
|                     break; |                     break; | ||||||
|                 case Define.E_ProcessStatus._2_ProductEntry: |                 case Define.E_ProcessStatus._2_ProductEntry: | ||||||
|                     this.SelectProcessLabelRefresh(1); |                     if (this.labelProgress1.BackGroundColor != this.ColorProgressOff) this.labelProgress1.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress2.BackGroundColor != this.ColorProgressOn) this.labelProgress2.BackGroundColor = this.ColorProgressOn; | ||||||
|  |                     if (this.labelProgress3.BackGroundColor != this.ColorProgressOff) this.labelProgress3.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress4.BackGroundColor != this.ColorProgressOff) this.labelProgress4.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress5.BackGroundColor != this.ColorProgressOff) this.labelProgress5.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress6.BackGroundColor != this.ColorProgressOff) this.labelProgress6.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress7.BackGroundColor != this.ColorProgressOff) this.labelProgress7.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress8.BackGroundColor != this.ColorProgressOff) this.labelProgress8.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress9.BackGroundColor != this.ColorProgressOff) this.labelProgress9.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress10.BackGroundColor != this.ColorProgressOff) this.labelProgress10.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress11.BackGroundColor != this.ColorProgressOff) this.labelProgress11.BackGroundColor = this.ColorProgressOff; | ||||||
|  | 
 | ||||||
|  |                     this.InitializeData(); | ||||||
|                     break; |                     break; | ||||||
|                 case Define.E_ProcessStatus._3_MoveToLeak: |                 case Define.E_ProcessStatus._3_MoveToLeak: | ||||||
|                     this.SelectProcessLabelRefresh(2); |                     if (this.labelProgress1.BackGroundColor != this.ColorProgressOff) this.labelProgress1.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress2.BackGroundColor != this.ColorProgressOff) this.labelProgress2.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress3.BackGroundColor != this.ColorProgressOn) this.labelProgress3.BackGroundColor = this.ColorProgressOn; | ||||||
|  |                     if (this.labelProgress4.BackGroundColor != this.ColorProgressOff) this.labelProgress4.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress5.BackGroundColor != this.ColorProgressOff) this.labelProgress5.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress6.BackGroundColor != this.ColorProgressOff) this.labelProgress6.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress7.BackGroundColor != this.ColorProgressOff) this.labelProgress7.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress8.BackGroundColor != this.ColorProgressOff) this.labelProgress8.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress9.BackGroundColor != this.ColorProgressOff) this.labelProgress9.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress10.BackGroundColor != this.ColorProgressOff) this.labelProgress10.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress11.BackGroundColor != this.ColorProgressOff) this.labelProgress11.BackGroundColor = this.ColorProgressOff; | ||||||
|                     break; |                     break; | ||||||
|                 case Define.E_ProcessStatus._4_MoveToCheck: |                 case Define.E_ProcessStatus._4_MoveToCheck: | ||||||
|                     this.SelectProcessLabelRefresh(3); |                     if (this.labelProgress1.BackGroundColor != this.ColorProgressOff) this.labelProgress1.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress2.BackGroundColor != this.ColorProgressOff) this.labelProgress2.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress3.BackGroundColor != this.ColorProgressOff) this.labelProgress3.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress4.BackGroundColor != this.ColorProgressOn) this.labelProgress4.BackGroundColor = this.ColorProgressOn; | ||||||
|  |                     if (this.labelProgress5.BackGroundColor != this.ColorProgressOff) this.labelProgress5.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress6.BackGroundColor != this.ColorProgressOff) this.labelProgress6.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress7.BackGroundColor != this.ColorProgressOff) this.labelProgress7.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress8.BackGroundColor != this.ColorProgressOff) this.labelProgress8.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress9.BackGroundColor != this.ColorProgressOff) this.labelProgress9.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress10.BackGroundColor != this.ColorProgressOff) this.labelProgress10.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress11.BackGroundColor != this.ColorProgressOff) this.labelProgress11.BackGroundColor = this.ColorProgressOff; | ||||||
|                     break; |                     break; | ||||||
|                 case Define.E_ProcessStatus._5_ChamberMerge: |                 case Define.E_ProcessStatus._5_ChamberMerge: | ||||||
|                     this.SelectProcessLabelRefresh(4); |                     if (this.labelProgress1.BackGroundColor != this.ColorProgressOff) this.labelProgress1.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress2.BackGroundColor != this.ColorProgressOff) this.labelProgress2.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress3.BackGroundColor != this.ColorProgressOff) this.labelProgress3.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress4.BackGroundColor != this.ColorProgressOff) this.labelProgress4.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress5.BackGroundColor != this.ColorProgressOn) this.labelProgress5.BackGroundColor = this.ColorProgressOn; | ||||||
|  |                     if (this.labelProgress6.BackGroundColor != this.ColorProgressOff) this.labelProgress6.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress7.BackGroundColor != this.ColorProgressOff) this.labelProgress7.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress8.BackGroundColor != this.ColorProgressOff) this.labelProgress8.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress9.BackGroundColor != this.ColorProgressOff) this.labelProgress9.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress10.BackGroundColor != this.ColorProgressOff) this.labelProgress10.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress11.BackGroundColor != this.ColorProgressOff) this.labelProgress11.BackGroundColor = this.ColorProgressOff; | ||||||
|                     break; |                     break; | ||||||
|                 case Define.E_ProcessStatus._6_VacuumStart: |                 case Define.E_ProcessStatus._6_VacuumStart: | ||||||
|  |                     if (this.labelProgress1.BackGroundColor != this.ColorProgressOff) this.labelProgress1.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress2.BackGroundColor != this.ColorProgressOff) this.labelProgress2.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress3.BackGroundColor != this.ColorProgressOff) this.labelProgress3.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress4.BackGroundColor != this.ColorProgressOff) this.labelProgress4.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress5.BackGroundColor != this.ColorProgressOff) this.labelProgress5.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress6.BackGroundColor != this.ColorProgressOn) this.labelProgress6.BackGroundColor = this.ColorProgressOn; | ||||||
|  |                     if (this.labelProgress7.BackGroundColor != this.ColorProgressOff) this.labelProgress7.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress8.BackGroundColor != this.ColorProgressOff) this.labelProgress8.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress9.BackGroundColor != this.ColorProgressOff) this.labelProgress9.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress10.BackGroundColor != this.ColorProgressOff) this.labelProgress10.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress11.BackGroundColor != this.ColorProgressOff) this.labelProgress11.BackGroundColor = this.ColorProgressOff; | ||||||
|                     break; |                     break; | ||||||
|                 case Define.E_ProcessStatus._7_VacuumHold: |                 case Define.E_ProcessStatus._7_VacuumHold: | ||||||
|                     this.SelectProcessLabelRefresh(5); |                     if (this.labelProgress1.BackGroundColor != this.ColorProgressOff) this.labelProgress1.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress2.BackGroundColor != this.ColorProgressOff) this.labelProgress2.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress3.BackGroundColor != this.ColorProgressOff) this.labelProgress3.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress4.BackGroundColor != this.ColorProgressOff) this.labelProgress4.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress5.BackGroundColor != this.ColorProgressOff) this.labelProgress5.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress6.BackGroundColor != this.ColorProgressOff) this.labelProgress6.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress7.BackGroundColor != this.ColorProgressOn) this.labelProgress7.BackGroundColor = this.ColorProgressOn; | ||||||
|  |                     if (this.labelProgress8.BackGroundColor != this.ColorProgressOff) this.labelProgress8.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress9.BackGroundColor != this.ColorProgressOff) this.labelProgress9.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress10.BackGroundColor != this.ColorProgressOff) this.labelProgress10.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress11.BackGroundColor != this.ColorProgressOff) this.labelProgress11.BackGroundColor = this.ColorProgressOff; | ||||||
|                     break; |                     break; | ||||||
|                 case Define.E_ProcessStatus._8_Judgment: |                 case Define.E_ProcessStatus._8_Judgment: | ||||||
|                     this.SelectProcessLabelRefresh(6); |                     if (this.labelProgress1.BackGroundColor != this.ColorProgressOff) this.labelProgress1.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress2.BackGroundColor != this.ColorProgressOff) this.labelProgress2.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress3.BackGroundColor != this.ColorProgressOff) this.labelProgress3.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress4.BackGroundColor != this.ColorProgressOff) this.labelProgress4.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress5.BackGroundColor != this.ColorProgressOff) this.labelProgress5.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress6.BackGroundColor != this.ColorProgressOff) this.labelProgress6.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress7.BackGroundColor != this.ColorProgressOff) this.labelProgress7.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress8.BackGroundColor != this.ColorProgressOn) this.labelProgress8.BackGroundColor = this.ColorProgressOn; | ||||||
|  |                     if (this.labelProgress9.BackGroundColor != this.ColorProgressOff) this.labelProgress9.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress10.BackGroundColor != this.ColorProgressOff) this.labelProgress10.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress11.BackGroundColor != this.ColorProgressOff) this.labelProgress11.BackGroundColor = this.ColorProgressOff; | ||||||
|                     break; |                     break; | ||||||
|                 case Define.E_ProcessStatus._9_VacuumBreak: |                 case Define.E_ProcessStatus._9_VacuumBreak: | ||||||
|                     this.SelectProcessLabelRefresh(7); |                     if (this.labelProgress1.BackGroundColor != this.ColorProgressOff) this.labelProgress1.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress2.BackGroundColor != this.ColorProgressOff) this.labelProgress2.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress3.BackGroundColor != this.ColorProgressOff) this.labelProgress3.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress4.BackGroundColor != this.ColorProgressOff) this.labelProgress4.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress5.BackGroundColor != this.ColorProgressOff) this.labelProgress5.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress6.BackGroundColor != this.ColorProgressOff) this.labelProgress6.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress7.BackGroundColor != this.ColorProgressOff) this.labelProgress7.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress8.BackGroundColor != this.ColorProgressOff) this.labelProgress8.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress9.BackGroundColor != this.ColorProgressOn) this.labelProgress9.BackGroundColor = this.ColorProgressOn; | ||||||
|  |                     if (this.labelProgress10.BackGroundColor != this.ColorProgressOff) this.labelProgress10.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress11.BackGroundColor != this.ColorProgressOff) this.labelProgress11.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     break; | ||||||
|  |                 case Define.E_ProcessStatus._10_ChamberRelease: | ||||||
|  |                     if (this.labelProgress1.BackGroundColor != this.ColorProgressOff) this.labelProgress1.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress2.BackGroundColor != this.ColorProgressOff) this.labelProgress2.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress3.BackGroundColor != this.ColorProgressOff) this.labelProgress3.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress4.BackGroundColor != this.ColorProgressOff) this.labelProgress4.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress5.BackGroundColor != this.ColorProgressOff) this.labelProgress5.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress6.BackGroundColor != this.ColorProgressOff) this.labelProgress6.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress7.BackGroundColor != this.ColorProgressOff) this.labelProgress7.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress8.BackGroundColor != this.ColorProgressOff) this.labelProgress8.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress9.BackGroundColor != this.ColorProgressOff) this.labelProgress9.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress10.BackGroundColor != this.ColorProgressOn) this.labelProgress10.BackGroundColor = this.ColorProgressOn; | ||||||
|  |                     if (this.labelProgress11.BackGroundColor != this.ColorProgressOff) this.labelProgress11.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     break; | ||||||
|  |                 case Define.E_ProcessStatus._11_MoveToReady: | ||||||
|  |                     if (this.labelProgress1.BackGroundColor != this.ColorProgressOff) this.labelProgress1.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress2.BackGroundColor != this.ColorProgressOff) this.labelProgress2.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress3.BackGroundColor != this.ColorProgressOff) this.labelProgress3.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress4.BackGroundColor != this.ColorProgressOff) this.labelProgress4.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress5.BackGroundColor != this.ColorProgressOff) this.labelProgress5.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress6.BackGroundColor != this.ColorProgressOff) this.labelProgress6.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress7.BackGroundColor != this.ColorProgressOff) this.labelProgress7.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress8.BackGroundColor != this.ColorProgressOff) this.labelProgress8.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress9.BackGroundColor != this.ColorProgressOff) this.labelProgress9.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress10.BackGroundColor != this.ColorProgressOff) this.labelProgress10.BackGroundColor = this.ColorProgressOff; | ||||||
|  |                     if (this.labelProgress11.BackGroundColor != this.ColorProgressOn) this.labelProgress11.BackGroundColor = this.ColorProgressOn; | ||||||
|                     break; |                     break; | ||||||
|                 default: |                 default: | ||||||
|                     break; |                     break; | ||||||
|             } |             } | ||||||
|             this.PreviousStageNum = status; |  | ||||||
|         } |         } | ||||||
|         private void UpdateDisplayDotGraphDiff(SmartDraw draw, DiffData diff) |         private void UpdateDisplayDotGraphDiff(SmartDraw draw, DiffData diff) | ||||||
|         { |         { | ||||||
|  |  | ||||||
|  | @ -28,8 +28,9 @@ | ||||||
|         /// </summary> |         /// </summary> | ||||||
|         private void InitializeComponent() |         private void InitializeComponent() | ||||||
|         { |         { | ||||||
|             SmartX.SmartDraw_ChartChannelPenStyle.ChartPenStyle chartPenStyle1 = new SmartX.SmartDraw_ChartChannelPenStyle.ChartPenStyle(); |             SmartX.SmartDraw_ChartChannelPenStyle.ChartPenStyle chartPenStyle2 = new SmartX.SmartDraw_ChartChannelPenStyle.ChartPenStyle(); | ||||||
|             this.smartGroupBox1 = new SmartX.SmartGroupBox(); |             this.smartGroupBox1 = new SmartX.SmartGroupBox(); | ||||||
|  |             this.buttonDisplay = new SmartX.SmartButton(); | ||||||
|             this.buttonStart = new SmartX.SmartButton(); |             this.buttonStart = new SmartX.SmartButton(); | ||||||
|             this.labelProgress3 = new SmartX.SmartLabel(); |             this.labelProgress3 = new SmartX.SmartLabel(); | ||||||
|             this.labelProgress8 = new SmartX.SmartLabel(); |             this.labelProgress8 = new SmartX.SmartLabel(); | ||||||
|  | @ -188,7 +189,6 @@ | ||||||
|             this.labelMesResult2 = new SmartX.SmartLabel(); |             this.labelMesResult2 = new SmartX.SmartLabel(); | ||||||
|             this.smartGroupBox11 = new SmartX.SmartGroupBox(); |             this.smartGroupBox11 = new SmartX.SmartGroupBox(); | ||||||
|             this.smartDraw2 = new SmartX.SmartDraw(); |             this.smartDraw2 = new SmartX.SmartDraw(); | ||||||
|             this.buttonDisplay = new SmartX.SmartButton(); |  | ||||||
|             this.smartGroupBox1.SuspendLayout(); |             this.smartGroupBox1.SuspendLayout(); | ||||||
|             this.smartGroupBox14.SuspendLayout(); |             this.smartGroupBox14.SuspendLayout(); | ||||||
|             this.smartGroupBox2.SuspendLayout(); |             this.smartGroupBox2.SuspendLayout(); | ||||||
|  | @ -253,6 +253,41 @@ | ||||||
|             this.smartGroupBox1.Text = "smartGroupBox1"; |             this.smartGroupBox1.Text = "smartGroupBox1"; | ||||||
|             this.smartGroupBox1.TextColor = System.Drawing.Color.White; |             this.smartGroupBox1.TextColor = System.Drawing.Color.White; | ||||||
|             //  |             //  | ||||||
|  |             // buttonDisplay | ||||||
|  |             //  | ||||||
|  |             this.buttonDisplay.BackGround = this.smartGroupBox1; | ||||||
|  |             this.buttonDisplay.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(52)))), ((int)(((byte)(51)))), ((int)(((byte)(65))))); | ||||||
|  |             this.buttonDisplay.ButtonColor = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165))))); | ||||||
|  |             this.buttonDisplay.ButtonDownColor = System.Drawing.Color.SlateGray; | ||||||
|  |             this.buttonDisplay.ButtonImageAutoSize = true; | ||||||
|  |             this.buttonDisplay.ButtonStyle = SmartX.SmartButton.ButtonStyles.FlatRound; | ||||||
|  |             this.buttonDisplay.ButtonText = "Display"; | ||||||
|  |             this.buttonDisplay.ColorKeySamplePosition = new System.Drawing.Point(0, 0); | ||||||
|  |             this.buttonDisplay.GroupID = 0; | ||||||
|  |             this.buttonDisplay.ImageDisable = null; | ||||||
|  |             this.buttonDisplay.ImageDown = null; | ||||||
|  |             this.buttonDisplay.ImageUp = null; | ||||||
|  |             this.buttonDisplay.Location = new System.Drawing.Point(730, 3); | ||||||
|  |             this.buttonDisplay.Mode = SmartX.SmartButton.BUTTONMODE.NORMAL; | ||||||
|  |             this.buttonDisplay.Name = "buttonDisplay"; | ||||||
|  |             this.buttonDisplay.NestedClickEventPrevent = false; | ||||||
|  |             this.buttonDisplay.OutlinePixel = 2; | ||||||
|  |             this.buttonDisplay.OverlapOptimize = true; | ||||||
|  |             this.buttonDisplay.RepeatInterval = 200; | ||||||
|  |             this.buttonDisplay.RepeatIntervalAccelerate = null; | ||||||
|  |             this.buttonDisplay.RoundSize = 10; | ||||||
|  |             this.buttonDisplay.SafeInterval = 200; | ||||||
|  |             this.buttonDisplay.Size = new System.Drawing.Size(84, 31); | ||||||
|  |             this.buttonDisplay.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE; | ||||||
|  |             this.buttonDisplay.TabIndex = 441; | ||||||
|  |             this.buttonDisplay.Text = null; | ||||||
|  |             this.buttonDisplay.TextColor = System.Drawing.Color.White; | ||||||
|  |             this.buttonDisplay.TextColorDisable = System.Drawing.Color.Gray; | ||||||
|  |             this.buttonDisplay.TextDownColor = System.Drawing.Color.FromArgb(((int)(((byte)(233)))), ((int)(((byte)(238)))), ((int)(((byte)(255))))); | ||||||
|  |             this.buttonDisplay.TextHAlign = SmartX.SmartButton.TextHorAlign.Middle; | ||||||
|  |             this.buttonDisplay.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle; | ||||||
|  |             this.buttonDisplay.Click += new System.EventHandler(this.buttonDisplay_Click); | ||||||
|  |             //  | ||||||
|             // buttonStart |             // buttonStart | ||||||
|             //  |             //  | ||||||
|             this.buttonStart.BackGround = this.smartGroupBox1; |             this.buttonStart.BackGround = this.smartGroupBox1; | ||||||
|  | @ -267,7 +302,7 @@ | ||||||
|             this.buttonStart.ImageDisable = null; |             this.buttonStart.ImageDisable = null; | ||||||
|             this.buttonStart.ImageDown = null; |             this.buttonStart.ImageDown = null; | ||||||
|             this.buttonStart.ImageUp = null; |             this.buttonStart.ImageUp = null; | ||||||
|             this.buttonStart.Location = new System.Drawing.Point(822, 3); |             this.buttonStart.Location = new System.Drawing.Point(820, 3); | ||||||
|             this.buttonStart.Mode = SmartX.SmartButton.BUTTONMODE.NORMAL; |             this.buttonStart.Mode = SmartX.SmartButton.BUTTONMODE.NORMAL; | ||||||
|             this.buttonStart.Name = "buttonStart"; |             this.buttonStart.Name = "buttonStart"; | ||||||
|             this.buttonStart.NestedClickEventPrevent = false; |             this.buttonStart.NestedClickEventPrevent = false; | ||||||
|  | @ -532,10 +567,10 @@ | ||||||
|             //  |             //  | ||||||
|             // smartDraw_ChartChannelPenStyle1 |             // smartDraw_ChartChannelPenStyle1 | ||||||
|             //  |             //  | ||||||
|             chartPenStyle1.ChannelColor = System.Drawing.Color.White; |             chartPenStyle2.ChannelColor = System.Drawing.Color.White; | ||||||
|             chartPenStyle1.PenStyle = SmartX.SmartDraw_ChartChannelPenStyle.PenStyles.SOLID; |             chartPenStyle2.PenStyle = SmartX.SmartDraw_ChartChannelPenStyle.PenStyles.SOLID; | ||||||
|             chartPenStyle1.PenWidth = 3; |             chartPenStyle2.PenWidth = 3; | ||||||
|             this.smartDraw_ChartChannelPenStyle1.ChartChannelPenStyle.Add(chartPenStyle1); |             this.smartDraw_ChartChannelPenStyle1.ChartChannelPenStyle.Add(chartPenStyle2); | ||||||
|             //  |             //  | ||||||
|             // smartLabel61 |             // smartLabel61 | ||||||
|             //  |             //  | ||||||
|  | @ -3782,41 +3817,6 @@ | ||||||
|             this.smartDraw2.TabIndex = 14; |             this.smartDraw2.TabIndex = 14; | ||||||
|             this.smartDraw2.Text = "smartDraw2"; |             this.smartDraw2.Text = "smartDraw2"; | ||||||
|             //  |             //  | ||||||
|             // buttonDisplay |  | ||||||
|             //  |  | ||||||
|             this.buttonDisplay.BackGround = this.smartGroupBox1; |  | ||||||
|             this.buttonDisplay.BackGroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(52)))), ((int)(((byte)(51)))), ((int)(((byte)(65))))); |  | ||||||
|             this.buttonDisplay.ButtonColor = System.Drawing.Color.FromArgb(((int)(((byte)(58)))), ((int)(((byte)(110)))), ((int)(((byte)(165))))); |  | ||||||
|             this.buttonDisplay.ButtonDownColor = System.Drawing.Color.SlateGray; |  | ||||||
|             this.buttonDisplay.ButtonImageAutoSize = true; |  | ||||||
|             this.buttonDisplay.ButtonStyle = SmartX.SmartButton.ButtonStyles.FlatRound; |  | ||||||
|             this.buttonDisplay.ButtonText = "Display"; |  | ||||||
|             this.buttonDisplay.ColorKeySamplePosition = new System.Drawing.Point(0, 0); |  | ||||||
|             this.buttonDisplay.GroupID = 0; |  | ||||||
|             this.buttonDisplay.ImageDisable = null; |  | ||||||
|             this.buttonDisplay.ImageDown = null; |  | ||||||
|             this.buttonDisplay.ImageUp = null; |  | ||||||
|             this.buttonDisplay.Location = new System.Drawing.Point(732, 3); |  | ||||||
|             this.buttonDisplay.Mode = SmartX.SmartButton.BUTTONMODE.NORMAL; |  | ||||||
|             this.buttonDisplay.Name = "buttonDisplay"; |  | ||||||
|             this.buttonDisplay.NestedClickEventPrevent = false; |  | ||||||
|             this.buttonDisplay.OutlinePixel = 2; |  | ||||||
|             this.buttonDisplay.OverlapOptimize = true; |  | ||||||
|             this.buttonDisplay.RepeatInterval = 200; |  | ||||||
|             this.buttonDisplay.RepeatIntervalAccelerate = null; |  | ||||||
|             this.buttonDisplay.RoundSize = 10; |  | ||||||
|             this.buttonDisplay.SafeInterval = 200; |  | ||||||
|             this.buttonDisplay.Size = new System.Drawing.Size(84, 31); |  | ||||||
|             this.buttonDisplay.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE; |  | ||||||
|             this.buttonDisplay.TabIndex = 441; |  | ||||||
|             this.buttonDisplay.Text = null; |  | ||||||
|             this.buttonDisplay.TextColor = System.Drawing.Color.White; |  | ||||||
|             this.buttonDisplay.TextColorDisable = System.Drawing.Color.Gray; |  | ||||||
|             this.buttonDisplay.TextDownColor = System.Drawing.Color.FromArgb(((int)(((byte)(233)))), ((int)(((byte)(238)))), ((int)(((byte)(255))))); |  | ||||||
|             this.buttonDisplay.TextHAlign = SmartX.SmartButton.TextHorAlign.Middle; |  | ||||||
|             this.buttonDisplay.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle; |  | ||||||
|             this.buttonDisplay.Click += new System.EventHandler(this.buttonDisplay_Click); |  | ||||||
|             //  |  | ||||||
|             // ControlMenuSystemStatus1 |             // ControlMenuSystemStatus1 | ||||||
|             //  |             //  | ||||||
|             this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F); |             this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F); | ||||||
|  |  | ||||||
|  | @ -999,7 +999,7 @@ namespace INT_PT002.Controls | ||||||
|         } |         } | ||||||
|         private void buttonDisplay_Click(object sender, EventArgs e) |         private void buttonDisplay_Click(object sender, EventArgs e) | ||||||
|         { |         { | ||||||
| 
 |             this.ParentForm.UpdateDisplayEquipmentTest(); | ||||||
|         } |         } | ||||||
|         #endregion |         #endregion | ||||||
| 
 | 
 | ||||||
|  |  | ||||||
|  | @ -120,6 +120,9 @@ | ||||||
|   <metadata name="smartDraw_ChartChannelPenStyle1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> |   <metadata name="smartDraw_ChartChannelPenStyle1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> | ||||||
|     <value>17, 17</value> |     <value>17, 17</value> | ||||||
|   </metadata> |   </metadata> | ||||||
|  |   <metadata name="smartDraw_ChartChannelPenStyle1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> | ||||||
|  |     <value>17, 17</value> | ||||||
|  |   </metadata> | ||||||
|   <metadata name="$this.TrayHeight" type="System.Int32, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> |   <metadata name="$this.TrayHeight" type="System.Int32, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> | ||||||
|     <value>47</value> |     <value>47</value> | ||||||
|   </metadata> |   </metadata> | ||||||
|  |  | ||||||
|  | @ -946,7 +946,7 @@ namespace INT_PT002.Forms | ||||||
|                     break; |                     break; | ||||||
|                 case Define.E_ProcessStatus._2_ProductEntry: |                 case Define.E_ProcessStatus._2_ProductEntry: | ||||||
|                     this.InitializeData(); |                     this.InitializeData(); | ||||||
|                     this.ProcessStatusStep2(status); |                     this.ProcessStatusStep1(status); | ||||||
|                     break; |                     break; | ||||||
|                 case Define.E_ProcessStatus._3_MoveToLeak: |                 case Define.E_ProcessStatus._3_MoveToLeak: | ||||||
|                 case Define.E_ProcessStatus._4_MoveToCheck: |                 case Define.E_ProcessStatus._4_MoveToCheck: | ||||||
|  | @ -954,6 +954,9 @@ namespace INT_PT002.Forms | ||||||
|                     this.ProcessStatusStep2(status); |                     this.ProcessStatusStep2(status); | ||||||
|                     break; |                     break; | ||||||
|                 case Define.E_ProcessStatus._6_VacuumStart: |                 case Define.E_ProcessStatus._6_VacuumStart: | ||||||
|  |                     //이미지 교체 | ||||||
|  |                     this.ProcessStatusStep3(status); | ||||||
|  |                     break; | ||||||
|                 case Define.E_ProcessStatus._7_VacuumHold: |                 case Define.E_ProcessStatus._7_VacuumHold: | ||||||
|                 case Define.E_ProcessStatus._8_Judgment: |                 case Define.E_ProcessStatus._8_Judgment: | ||||||
|                 case Define.E_ProcessStatus._9_VacuumBreak: |                 case Define.E_ProcessStatus._9_VacuumBreak: | ||||||
|  |  | ||||||
|  | @ -893,7 +893,7 @@ namespace INT_PT002.Forms | ||||||
|         } |         } | ||||||
|         public void UpdateDisplay_Equipment_ProcessStatus(Define.E_ProcessStatus status) |         public void UpdateDisplay_Equipment_ProcessStatus(Define.E_ProcessStatus status) | ||||||
|         { |         { | ||||||
|             this.Child_System_Status.UpdateProcessStatusDisplay(status); |             this.Child_System_Status.UpdateDisplayProcessStatus(status); | ||||||
|             this.Child_System_Status1.UpdateDisplayProcessStatus(status); |             this.Child_System_Status1.UpdateDisplayProcessStatus(status); | ||||||
|         } |         } | ||||||
|         public void UpdateDisplay_Equipment1_ProcessStatusMeasuring1(Define.E_ProcessStatus status, string lane) |         public void UpdateDisplay_Equipment1_ProcessStatusMeasuring1(Define.E_ProcessStatus status, string lane) | ||||||
|  |  | ||||||
		Loading…
	
		Reference in New Issue