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.
128 lines
5.1 KiB
C#
128 lines
5.1 KiB
C#
using System.ComponentModel;
|
|
using System.Drawing;
|
|
using System.Windows.Forms;
|
|
|
|
namespace Mesnac.Action.ChemicalWeighing.LjWeight
|
|
{
|
|
partial class FrmWeight
|
|
{
|
|
/// <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.HighWeight = new System.Windows.Forms.TextBox();
|
|
this.LowWeight = 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.SuspendLayout();
|
|
//
|
|
// HighWeight
|
|
//
|
|
this.HighWeight.Enabled = false;
|
|
this.HighWeight.Location = new System.Drawing.Point(316, 176);
|
|
this.HighWeight.Margin = new System.Windows.Forms.Padding(8, 8, 8, 8);
|
|
this.HighWeight.Name = "HighWeight";
|
|
this.HighWeight.Size = new System.Drawing.Size(192, 28);
|
|
this.HighWeight.TabIndex = 57;
|
|
//
|
|
// LowWeight
|
|
//
|
|
this.LowWeight.Enabled = false;
|
|
this.LowWeight.Location = new System.Drawing.Point(316, 99);
|
|
this.LowWeight.Margin = new System.Windows.Forms.Padding(8, 8, 8, 8);
|
|
this.LowWeight.Name = "LowWeight";
|
|
this.LowWeight.Size = new System.Drawing.Size(192, 28);
|
|
this.LowWeight.TabIndex = 58;
|
|
//
|
|
// btnCancel
|
|
//
|
|
this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
|
this.btnCancel.Location = new System.Drawing.Point(432, 380);
|
|
this.btnCancel.Margin = new System.Windows.Forms.Padding(8, 8, 8, 8);
|
|
this.btnCancel.Name = "btnCancel";
|
|
this.btnCancel.Size = new System.Drawing.Size(147, 68);
|
|
this.btnCancel.TabIndex = 56;
|
|
this.btnCancel.Text = "取消";
|
|
this.btnCancel.UseVisualStyleBackColor = true;
|
|
//
|
|
// btnOK
|
|
//
|
|
this.btnOK.Location = new System.Drawing.Point(172, 380);
|
|
this.btnOK.Margin = new System.Windows.Forms.Padding(8, 8, 8, 8);
|
|
this.btnOK.Name = "btnOK";
|
|
this.btnOK.Size = new System.Drawing.Size(147, 68);
|
|
this.btnOK.TabIndex = 55;
|
|
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(195, 176);
|
|
this.label4.Margin = new System.Windows.Forms.Padding(8, 0, 8, 0);
|
|
this.label4.Name = "label4";
|
|
this.label4.Size = new System.Drawing.Size(107, 18);
|
|
this.label4.TabIndex = 52;
|
|
//
|
|
// label3
|
|
//
|
|
this.label3.AutoSize = true;
|
|
this.label3.Location = new System.Drawing.Point(195, 99);
|
|
this.label3.Margin = new System.Windows.Forms.Padding(8, 0, 8, 0);
|
|
this.label3.Name = "label3";
|
|
this.label3.Size = new System.Drawing.Size(107, 18);
|
|
this.label3.TabIndex = 54;
|
|
//
|
|
// FrmWeight
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 18F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(846, 798);
|
|
this.Controls.Add(this.HighWeight);
|
|
this.Controls.Add(this.LowWeight);
|
|
this.Controls.Add(this.btnCancel);
|
|
this.Controls.Add(this.btnOK);
|
|
this.Controls.Add(this.label4);
|
|
this.Controls.Add(this.label3);
|
|
this.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
|
|
this.Name = "FrmWeight";
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
}
|
|
|
|
private System.Windows.Forms.TextBox HighWeight;
|
|
private System.Windows.Forms.TextBox LowWeight;
|
|
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
|
|
}
|
|
} |