FrmReleaseDoor.designer.cs
4.2 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
namespace OnlineStore.XLRStore
{
partial class FrmReleaseDoor
{
/// <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.btn_cancel = new System.Windows.Forms.Button();
this.lbl_lockstatus = new System.Windows.Forms.Label();
this.lbl_airstatus = new System.Windows.Forms.Label();
this.timer1 = new System.Windows.Forms.Timer(this.components);
this.SuspendLayout();
//
// btn_cancel
//
this.btn_cancel.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.btn_cancel.Location = new System.Drawing.Point(202, 318);
this.btn_cancel.Name = "btn_cancel";
this.btn_cancel.Size = new System.Drawing.Size(234, 49);
this.btn_cancel.TabIndex = 0;
this.btn_cancel.Text = "取消开启或关闭门锁";
this.btn_cancel.UseVisualStyleBackColor = true;
this.btn_cancel.Click += new System.EventHandler(this.btn_cancel_Click);
//
// lbl_lockstatus
//
this.lbl_lockstatus.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.lbl_lockstatus.Location = new System.Drawing.Point(99, 24);
this.lbl_lockstatus.Name = "lbl_lockstatus";
this.lbl_lockstatus.Size = new System.Drawing.Size(469, 75);
this.lbl_lockstatus.TabIndex = 1;
this.lbl_lockstatus.Text = "门锁状态:已锁定";
//
// lbl_airstatus
//
this.lbl_airstatus.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.lbl_airstatus.Location = new System.Drawing.Point(99, 112);
this.lbl_airstatus.Name = "lbl_airstatus";
this.lbl_airstatus.Size = new System.Drawing.Size(469, 149);
this.lbl_airstatus.TabIndex = 1;
this.lbl_airstatus.Text = "舱内氮气含量:";
//
// timer1
//
this.timer1.Interval = 1500;
this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
//
// FrmReleaseDoor
//
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
this.ClientSize = new System.Drawing.Size(662, 394);
this.Controls.Add(this.lbl_airstatus);
this.Controls.Add(this.lbl_lockstatus);
this.Controls.Add(this.btn_cancel);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "FrmReleaseDoor";
this.ShowIcon = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "解锁门锁";
this.Load += new System.EventHandler(this.FrmReleaseDoor_Load);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Button btn_cancel;
private System.Windows.Forms.Label lbl_lockstatus;
private System.Windows.Forms.Label lbl_airstatus;
private System.Windows.Forms.Timer timer1;
}
}