FrmSolderingMsg.Designer.cs
5.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
namespace TSA_V
{
partial class FrmSolderingMsg
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
this.timer1 = new System.Windows.Forms.Timer(this.components);
this.lblTime = new System.Windows.Forms.Label();
this.btnContinue = new System.Windows.Forms.Button();
this.btnStop = new System.Windows.Forms.Button();
this.lblCurrWorkTime = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// timer1
//
this.timer1.Interval = 500;
this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
//
// lblTime
//
this.lblTime.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.lblTime.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.lblTime.Location = new System.Drawing.Point(10, 90);
this.lblTime.Name = "lblTime";
this.lblTime.Size = new System.Drawing.Size(411, 23);
this.lblTime.TabIndex = 17;
this.lblTime.Text = "Left:20 seconds";
this.lblTime.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// btnContinue
//
this.btnContinue.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.btnContinue.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.btnContinue.Location = new System.Drawing.Point(116, 133);
this.btnContinue.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.btnContinue.Name = "btnContinue";
this.btnContinue.Size = new System.Drawing.Size(85, 32);
this.btnContinue.TabIndex = 14;
this.btnContinue.Text = "CONFIRM";
this.btnContinue.UseVisualStyleBackColor = true;
this.btnContinue.Click += new System.EventHandler(this.btnContinue_Click);
//
// btnStop
//
this.btnStop.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.btnStop.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.btnStop.Location = new System.Drawing.Point(209, 133);
this.btnStop.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.btnStop.Name = "btnStop";
this.btnStop.Size = new System.Drawing.Size(85, 32);
this.btnStop.TabIndex = 13;
this.btnStop.Text = "CANCEL";
this.btnStop.UseVisualStyleBackColor = true;
this.btnStop.Click += new System.EventHandler(this.btnStop_Click);
//
// lblCurrWorkTime
//
this.lblCurrWorkTime.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.lblCurrWorkTime.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.lblCurrWorkTime.Location = new System.Drawing.Point(10, 44);
this.lblCurrWorkTime.Name = "lblCurrWorkTime";
this.lblCurrWorkTime.Size = new System.Drawing.Size(411, 23);
this.lblCurrWorkTime.TabIndex = 16;
this.lblCurrWorkTime.Text = "This is the last component, please start welding";
this.lblCurrWorkTime.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// FrmSolderingMsg
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(432, 193);
this.Controls.Add(this.lblTime);
this.Controls.Add(this.btnContinue);
this.Controls.Add(this.btnStop);
this.Controls.Add(this.lblCurrWorkTime);
this.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.Name = "FrmSolderingMsg";
this.Text = "reminder";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FrmStatusMsg_FormClosing);
this.Load += new System.EventHandler(this.FrmWorkCount_Load);
this.Shown += new System.EventHandler(this.FrmStatusMsg_Shown);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Button btnContinue;
private System.Windows.Forms.Button btnStop;
private System.Windows.Forms.Label lblCurrWorkTime;
private System.Windows.Forms.Timer timer1;
private System.Windows.Forms.Label lblTime;
}
}