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.
134 lines
5.2 KiB
C#
134 lines
5.2 KiB
C#
using System.ComponentModel;
|
|
using System.Drawing;
|
|
using System.Windows.Forms;
|
|
|
|
namespace Mesnac.Action.ChemicalWeighing.LjMaterial
|
|
{
|
|
partial class FrmMaterial
|
|
{
|
|
/// <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.MNameTB = new System.Windows.Forms.TextBox();
|
|
this.btnCancel = new System.Windows.Forms.Button();
|
|
this.btnOK = new System.Windows.Forms.Button();
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.label2 = new System.Windows.Forms.Label();
|
|
this.DrpmaterialType = new System.Windows.Forms.ComboBox();
|
|
this.SuspendLayout();
|
|
//
|
|
// MNameTB
|
|
//
|
|
this.MNameTB.Location = new System.Drawing.Point(315, 165);
|
|
this.MNameTB.Margin = new System.Windows.Forms.Padding(8);
|
|
this.MNameTB.Name = "MNameTB";
|
|
this.MNameTB.Size = new System.Drawing.Size(260, 28);
|
|
this.MNameTB.TabIndex = 10;
|
|
//
|
|
// btnCancel
|
|
//
|
|
this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
|
this.btnCancel.Location = new System.Drawing.Point(388, 302);
|
|
this.btnCancel.Margin = new System.Windows.Forms.Padding(8);
|
|
this.btnCancel.Name = "btnCancel";
|
|
this.btnCancel.Size = new System.Drawing.Size(147, 68);
|
|
this.btnCancel.TabIndex = 9;
|
|
this.btnCancel.Text = "取消";
|
|
this.btnCancel.UseVisualStyleBackColor = true;
|
|
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
|
|
//
|
|
// btnOK
|
|
//
|
|
this.btnOK.Location = new System.Drawing.Point(135, 302);
|
|
this.btnOK.Margin = new System.Windows.Forms.Padding(8);
|
|
this.btnOK.Name = "btnOK";
|
|
this.btnOK.Size = new System.Drawing.Size(147, 68);
|
|
this.btnOK.TabIndex = 8;
|
|
this.btnOK.Text = "确认";
|
|
this.btnOK.UseVisualStyleBackColor = true;
|
|
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.Location = new System.Drawing.Point(135, 165);
|
|
this.label1.Margin = new System.Windows.Forms.Padding(8, 0, 8, 0);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(89, 18);
|
|
this.label1.TabIndex = 6;
|
|
this.label1.Text = "物料名称:";
|
|
//
|
|
// label2
|
|
//
|
|
this.label2.AutoSize = true;
|
|
this.label2.Location = new System.Drawing.Point(135, 84);
|
|
this.label2.Margin = new System.Windows.Forms.Padding(8, 0, 8, 0);
|
|
this.label2.Name = "label2";
|
|
this.label2.Size = new System.Drawing.Size(89, 18);
|
|
this.label2.TabIndex = 6;
|
|
this.label2.Text = "物料类别:";
|
|
//
|
|
// DrpmaterialType
|
|
//
|
|
this.DrpmaterialType.FormattingEnabled = true;
|
|
this.DrpmaterialType.Location = new System.Drawing.Point(315, 76);
|
|
this.DrpmaterialType.Margin = new System.Windows.Forms.Padding(4);
|
|
this.DrpmaterialType.Name = "DrpmaterialType";
|
|
this.DrpmaterialType.Size = new System.Drawing.Size(180, 26);
|
|
this.DrpmaterialType.TabIndex = 52;
|
|
//
|
|
// FrmMaterial
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 18F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(675, 648);
|
|
this.Controls.Add(this.DrpmaterialType);
|
|
this.Controls.Add(this.MNameTB);
|
|
this.Controls.Add(this.btnCancel);
|
|
this.Controls.Add(this.btnOK);
|
|
this.Controls.Add(this.label2);
|
|
this.Controls.Add(this.label1);
|
|
this.Margin = new System.Windows.Forms.Padding(4);
|
|
this.Name = "FrmMaterial";
|
|
this.Text = "物料类别";
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
private System.Windows.Forms.Label label2;
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.TextBox MNameTB;
|
|
private System.Windows.Forms.Button btnCancel;
|
|
private System.Windows.Forms.Button btnOK;
|
|
private System.Windows.Forms.Label label1;
|
|
|
|
private ComboBox DrpmaterialType;
|
|
}
|
|
} |