# Conflicts:
#	INT_PT002/Forms/FormMainDisplay2.Designer.cs
main
Seonjae 2023-03-31 15:56:49 +09:00
commit 8505a12a64
3 changed files with 1552 additions and 1369 deletions

File diff suppressed because it is too large Load Diff

View File

@ -25,7 +25,11 @@ namespace INT_PT002.Forms
private string MessageBoxRange;
private Color ColorProgressOn;
private Size SizeProgressOn;
private List<Point> ListPointProgressOn;
private Color ColorProgressOff;
private Size SizeProgressOff;
private List<Point> ListPointProgressOff;
private Color ColorResultPass;
private Color ColorResultNG;
private Color ColorResultNone;
@ -68,8 +72,32 @@ namespace INT_PT002.Forms
this.FlagIgnoreCNT = 0;
this.MessageBoxRange = "";
this.ColorProgressOff = Color.FromArgb(100, 101, 103);
this.ColorProgressOn = Color.FromArgb(0, 118, 222);
this.ListPointProgressOff = new List<Point>();
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.ColorResultNG = Color.FromArgb(254, 70, 70);
this.ColorResultNone = Color.FromArgb(42, 43, 45);
@ -842,6 +870,7 @@ namespace INT_PT002.Forms
msg.ShowDialog();
}
#endregion
private void smartButton1_Click(object sender, EventArgs e)
{
string value = "";

File diff suppressed because it is too large Load Diff