You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
163 lines
6.6 KiB
C#
163 lines
6.6 KiB
C#
using System.ComponentModel;
|
|
using System.Drawing;
|
|
using System.Windows.Forms;
|
|
|
|
namespace Mesnac.Action.ChemicalWeighing.LjPressure
|
|
{
|
|
partial class FrmPressureUpdate
|
|
{
|
|
/// <summary>
|
|
/// Required designer variable.
|
|
/// </summary>
|
|
private 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.HighLimit = new System.Windows.Forms.TextBox();
|
|
this.LowLimit = new System.Windows.Forms.TextBox();
|
|
this.btnCancel = new System.Windows.Forms.Button();
|
|
this.btnOK = new System.Windows.Forms.Button();
|
|
this.label4 = new System.Windows.Forms.Label();
|
|
this.label3 = new System.Windows.Forms.Label();
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.Alarm = new System.Windows.Forms.ComboBox();
|
|
this.SuspendLayout();
|
|
//
|
|
// HighLimit
|
|
//
|
|
this.HighLimit.Enabled = false;
|
|
this.HighLimit.Location = new System.Drawing.Point(108, 58);
|
|
this.HighLimit.Margin = new System.Windows.Forms.Padding(5);
|
|
this.HighLimit.MaxLength = 100;
|
|
this.HighLimit.Name = "HighLimit";
|
|
this.HighLimit.Size = new System.Drawing.Size(129, 21);
|
|
this.HighLimit.TabIndex = 47;
|
|
this.HighLimit.TextChanged += new System.EventHandler(this.HighLimit_TextChanged);
|
|
//
|
|
// LowLimit
|
|
//
|
|
this.LowLimit.Enabled = false;
|
|
this.LowLimit.Location = new System.Drawing.Point(108, 27);
|
|
this.LowLimit.Margin = new System.Windows.Forms.Padding(5);
|
|
this.LowLimit.MaxLength = 100;
|
|
this.LowLimit.Name = "LowLimit";
|
|
this.LowLimit.Size = new System.Drawing.Size(129, 21);
|
|
this.LowLimit.TabIndex = 48;
|
|
//
|
|
// btnCancel
|
|
//
|
|
this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
|
this.btnCancel.Location = new System.Drawing.Point(139, 139);
|
|
this.btnCancel.Margin = new System.Windows.Forms.Padding(5);
|
|
this.btnCancel.Name = "btnCancel";
|
|
this.btnCancel.Size = new System.Drawing.Size(98, 45);
|
|
this.btnCancel.TabIndex = 46;
|
|
this.btnCancel.Text = "取消";
|
|
this.btnCancel.UseVisualStyleBackColor = true;
|
|
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
|
|
//
|
|
// btnOK
|
|
//
|
|
this.btnOK.Location = new System.Drawing.Point(29, 139);
|
|
this.btnOK.Margin = new System.Windows.Forms.Padding(5);
|
|
this.btnOK.Name = "btnOK";
|
|
this.btnOK.Size = new System.Drawing.Size(98, 45);
|
|
this.btnOK.TabIndex = 45;
|
|
this.btnOK.Text = "确认";
|
|
this.btnOK.UseVisualStyleBackColor = true;
|
|
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
|
|
//
|
|
// label4
|
|
//
|
|
this.label4.AutoSize = true;
|
|
this.label4.Location = new System.Drawing.Point(27, 61);
|
|
this.label4.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
|
|
this.label4.Name = "label4";
|
|
this.label4.Size = new System.Drawing.Size(71, 12);
|
|
this.label4.TabIndex = 42;
|
|
this.label4.Text = "高压设定值:\r\n";
|
|
//
|
|
// label3
|
|
//
|
|
this.label3.AutoSize = true;
|
|
this.label3.Location = new System.Drawing.Point(27, 30);
|
|
this.label3.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
|
|
this.label3.Name = "label3";
|
|
this.label3.Size = new System.Drawing.Size(71, 12);
|
|
this.label3.TabIndex = 44;
|
|
this.label3.Text = "低压设定值:";
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.Location = new System.Drawing.Point(39, 90);
|
|
this.label1.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(59, 12);
|
|
this.label1.TabIndex = 43;
|
|
this.label1.Text = "超压报警:";
|
|
//
|
|
// Alarm
|
|
//
|
|
this.Alarm.FormattingEnabled = true;
|
|
this.Alarm.Location = new System.Drawing.Point(108, 87);
|
|
this.Alarm.Name = "Alarm";
|
|
this.Alarm.Size = new System.Drawing.Size(129, 20);
|
|
this.Alarm.TabIndex = 51;
|
|
this.Alarm.SelectedIndexChanged += new System.EventHandler(this.Alarm_SelectedIndexChanged);
|
|
//
|
|
// FrmPressureUpdate
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(268, 206);
|
|
this.Controls.Add(this.Alarm);
|
|
this.Controls.Add(this.HighLimit);
|
|
this.Controls.Add(this.LowLimit);
|
|
this.Controls.Add(this.btnCancel);
|
|
this.Controls.Add(this.btnOK);
|
|
this.Controls.Add(this.label4);
|
|
this.Controls.Add(this.label3);
|
|
this.Controls.Add(this.label1);
|
|
this.Name = "FrmPressureUpdate";
|
|
this.Text = "需改压力参数";
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
private System.Windows.Forms.ComboBox Alarm;
|
|
|
|
private System.Windows.Forms.Label label1;
|
|
private System.Windows.Forms.ComboBox comboBox1;
|
|
|
|
private System.Windows.Forms.TextBox HighLimit;
|
|
private System.Windows.Forms.TextBox LowLimit;
|
|
private System.Windows.Forms.Button btnCancel;
|
|
private System.Windows.Forms.Button btnOK;
|
|
private System.Windows.Forms.Label label4;
|
|
private System.Windows.Forms.Label label3;
|
|
|
|
#endregion
|
|
}
|
|
} |