|
|
|
@ -40,6 +40,7 @@
|
|
|
|
|
this.AlarmReset = new System.Windows.Forms.Button();
|
|
|
|
|
this.Run = new System.Windows.Forms.Button();
|
|
|
|
|
this.DMChange = new System.Windows.Forms.ListBox();
|
|
|
|
|
this.Alarm = new System.Windows.Forms.Button();
|
|
|
|
|
this.groupBox1.SuspendLayout();
|
|
|
|
|
this.groupBox2.SuspendLayout();
|
|
|
|
|
this.groupBox3.SuspendLayout();
|
|
|
|
@ -160,22 +161,39 @@
|
|
|
|
|
//
|
|
|
|
|
this.DMChange.FormattingEnabled = true;
|
|
|
|
|
this.DMChange.ItemHeight = 12;
|
|
|
|
|
this.DMChange.Location = new System.Drawing.Point(323, 12);
|
|
|
|
|
this.DMChange.Items.AddRange(new object[] {
|
|
|
|
|
"二级除尘器除尘风机",
|
|
|
|
|
"大A组除尘风机",
|
|
|
|
|
"大仓B组除尘风机",
|
|
|
|
|
"大仓C组除尘风机",
|
|
|
|
|
"大仓D组除尘风机",
|
|
|
|
|
"磨粉分析机电机",
|
|
|
|
|
"磨粉除尘风机电机",
|
|
|
|
|
"磨粉罗茨风机电机",
|
|
|
|
|
"磨粉皮带正转电机",
|
|
|
|
|
"磨粉皮带反转电机"});
|
|
|
|
|
this.DMChange.Location = new System.Drawing.Point(12, 160);
|
|
|
|
|
this.DMChange.Name = "DMChange";
|
|
|
|
|
this.DMChange.Size = new System.Drawing.Size(225, 148);
|
|
|
|
|
this.DMChange.TabIndex = 4;
|
|
|
|
|
this.DMChange.SelectedIndexChanged += new System.EventHandler(this.DMChange_SelectedIndexChanged);
|
|
|
|
|
DMChange.Items.AddRange(new string[] {"二级除尘器除尘风机", "大A组除尘风机", "大仓B组除尘风机", "大仓C组除尘风机", "大仓D组除尘风机",
|
|
|
|
|
"磨粉分析机电机", "磨粉除尘风机电机", "磨粉罗茨风机电机", "磨粉皮带正转电机", "磨粉皮带反转电机"});
|
|
|
|
|
|
|
|
|
|
//{"DM1GDP01", "DM1ASIG01", "DM1BSIG01", "DM1CSIG01", "DM1DSIG01",
|
|
|
|
|
// "DM1GDS01", "DM1GDS02", "DM1GDS03", "DM1GDS04", "DM1GDS05"});
|
|
|
|
|
//
|
|
|
|
|
// Alarm
|
|
|
|
|
//
|
|
|
|
|
this.Alarm.Location = new System.Drawing.Point(243, 160);
|
|
|
|
|
this.Alarm.Name = "Alarm";
|
|
|
|
|
this.Alarm.Size = new System.Drawing.Size(74, 39);
|
|
|
|
|
this.Alarm.TabIndex = 5;
|
|
|
|
|
this.Alarm.Text = "报警";
|
|
|
|
|
this.Alarm.UseVisualStyleBackColor = true;
|
|
|
|
|
this.Alarm.Click += new System.EventHandler(this.Alarm_Click);
|
|
|
|
|
//
|
|
|
|
|
// ElectronicMachinery
|
|
|
|
|
//
|
|
|
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
|
|
|
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
|
|
|
this.ClientSize = new System.Drawing.Size(560, 168);
|
|
|
|
|
this.ClientSize = new System.Drawing.Size(330, 317);
|
|
|
|
|
this.Controls.Add(this.Alarm);
|
|
|
|
|
this.Controls.Add(this.DMChange);
|
|
|
|
|
this.Controls.Add(this.Run);
|
|
|
|
|
this.Controls.Add(this.groupBox3);
|
|
|
|
@ -183,6 +201,7 @@
|
|
|
|
|
this.Controls.Add(this.groupBox1);
|
|
|
|
|
this.Name = "ElectronicMachinery";
|
|
|
|
|
this.Text = "电机控制";
|
|
|
|
|
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.ElectronicMachinery_FormClosing);
|
|
|
|
|
this.groupBox1.ResumeLayout(false);
|
|
|
|
|
this.groupBox1.PerformLayout();
|
|
|
|
|
this.groupBox2.ResumeLayout(false);
|
|
|
|
@ -206,5 +225,6 @@
|
|
|
|
|
private System.Windows.Forms.Button Running;
|
|
|
|
|
private System.Windows.Forms.Label NowIs;
|
|
|
|
|
private System.Windows.Forms.ListBox DMChange;
|
|
|
|
|
private System.Windows.Forms.Button Alarm;
|
|
|
|
|
}
|
|
|
|
|
}
|