메인화면 이미지 수정 중
parent
79653db8ba
commit
87bcafda85
File diff suppressed because it is too large
Load Diff
|
@ -25,7 +25,11 @@ namespace INT_PT002.Forms
|
||||||
private string MessageBoxRange;
|
private string MessageBoxRange;
|
||||||
|
|
||||||
private Color ColorProgressOn;
|
private Color ColorProgressOn;
|
||||||
|
private Size SizeProgressOn;
|
||||||
|
private List<Point> ListPointProgressOn;
|
||||||
private Color ColorProgressOff;
|
private Color ColorProgressOff;
|
||||||
|
private Size SizeProgressOff;
|
||||||
|
private List<Point> ListPointProgressOff;
|
||||||
private Color ColorResultPass;
|
private Color ColorResultPass;
|
||||||
private Color ColorResultNG;
|
private Color ColorResultNG;
|
||||||
private Color ColorResultNone;
|
private Color ColorResultNone;
|
||||||
|
@ -68,8 +72,32 @@ namespace INT_PT002.Forms
|
||||||
this.FlagIgnoreCNT = 0;
|
this.FlagIgnoreCNT = 0;
|
||||||
this.MessageBoxRange = "";
|
this.MessageBoxRange = "";
|
||||||
|
|
||||||
this.ColorProgressOff = Color.FromArgb(100, 101, 103);
|
this.ListPointProgressOff = new List<Point>();
|
||||||
this.ColorProgressOn = Color.FromArgb(0, 118, 222);
|
this.ListPointProgressOff.Clear();
|
||||||
|
this.ListPointProgressOff.Add(new Point(59, 203));
|
||||||
|
this.ListPointProgressOff.Add(new Point(269, 203));
|
||||||
|
this.ListPointProgressOff.Add(new Point(486, 203));
|
||||||
|
this.ListPointProgressOff.Add(new Point(703, 203));
|
||||||
|
this.ListPointProgressOff.Add(new Point(703, 398));
|
||||||
|
this.ListPointProgressOff.Add(new Point(486, 398));
|
||||||
|
this.ListPointProgressOff.Add(new Point(269, 398));
|
||||||
|
this.ListPointProgressOff.Add(new Point(59, 398));
|
||||||
|
|
||||||
|
this.ListPointProgressOn = new List<Point>();
|
||||||
|
this.ListPointProgressOn.Clear();
|
||||||
|
this.ListPointProgressOn.Add(new Point(36, 188));
|
||||||
|
this.ListPointProgressOn.Add(new Point(255, 188));
|
||||||
|
this.ListPointProgressOn.Add(new Point(474, 188));
|
||||||
|
this.ListPointProgressOn.Add(new Point(693, 188));
|
||||||
|
this.ListPointProgressOn.Add(new Point(693, 383));
|
||||||
|
this.ListPointProgressOn.Add(new Point(474, 383));
|
||||||
|
this.ListPointProgressOn.Add(new Point(255, 383));
|
||||||
|
this.ListPointProgressOn.Add(new Point(36, 383));
|
||||||
|
|
||||||
|
this.ColorProgressOff = Color.FromArgb(231, 231, 231);
|
||||||
|
this.SizeProgressOff = new Size(155, 140);
|
||||||
|
this.ColorProgressOn = Color.FromArgb(95, 196, 188);
|
||||||
|
this.SizeProgressOn = new Size(190, 170);
|
||||||
this.ColorResultPass = Color.FromArgb(39, 200, 64);
|
this.ColorResultPass = Color.FromArgb(39, 200, 64);
|
||||||
this.ColorResultNG = Color.FromArgb(254, 70, 70);
|
this.ColorResultNG = Color.FromArgb(254, 70, 70);
|
||||||
this.ColorResultNone = Color.FromArgb(42, 43, 45);
|
this.ColorResultNone = Color.FromArgb(42, 43, 45);
|
||||||
|
@ -779,6 +807,7 @@ namespace INT_PT002.Forms
|
||||||
msg.ShowDialog();
|
msg.ShowDialog();
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
private void smartButton1_Click(object sender, EventArgs e)
|
private void smartButton1_Click(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
string value = "";
|
string value = "";
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue