1
0
Fork 0
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.

180 lines
7.9 KiB
C#

namespace HighWayIot.Winform.UserControlPages.SysConfigPages
{
partial class MaterialAddForm
{
/// <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.label1 = new System.Windows.Forms.Label();
this.MaterialCodeTextBox = new System.Windows.Forms.TextBox();
this.label2 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.MaterialNameTextBox = new System.Windows.Forms.TextBox();
this.label4 = new System.Windows.Forms.Label();
this.MaterialTypeComboBox = new System.Windows.Forms.ComboBox();
this.ConfrimAddButton = new System.Windows.Forms.Button();
this.ChildComboBox = new System.Windows.Forms.ComboBox();
this.label5 = new System.Windows.Forms.Label();
this.IsUseCheckBox = new System.Windows.Forms.CheckBox();
this.SuspendLayout();
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(86, 58);
this.label1.Name = "label1";
this.label1.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
this.label1.Size = new System.Drawing.Size(0, 12);
this.label1.TabIndex = 0;
//
// MaterialCodeTextBox
//
this.MaterialCodeTextBox.Location = new System.Drawing.Point(128, 26);
this.MaterialCodeTextBox.Name = "MaterialCodeTextBox";
this.MaterialCodeTextBox.Size = new System.Drawing.Size(136, 21);
this.MaterialCodeTextBox.TabIndex = 1;
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(57, 30);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(65, 12);
this.label2.TabIndex = 2;
this.label2.Text = "物料代码:";
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(57, 57);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(65, 12);
this.label3.TabIndex = 4;
this.label3.Text = "物料名称:";
//
// MaterialNameTextBox
//
this.MaterialNameTextBox.Location = new System.Drawing.Point(128, 54);
this.MaterialNameTextBox.Name = "MaterialNameTextBox";
this.MaterialNameTextBox.Size = new System.Drawing.Size(136, 21);
this.MaterialNameTextBox.TabIndex = 3;
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(57, 84);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(65, 12);
this.label4.TabIndex = 6;
this.label4.Text = "物料类型:";
//
// MaterialTypeComboBox
//
this.MaterialTypeComboBox.FormattingEnabled = true;
this.MaterialTypeComboBox.Location = new System.Drawing.Point(128, 81);
this.MaterialTypeComboBox.Name = "MaterialTypeComboBox";
this.MaterialTypeComboBox.Size = new System.Drawing.Size(136, 20);
this.MaterialTypeComboBox.TabIndex = 7;
this.MaterialTypeComboBox.SelectedIndexChanged += new System.EventHandler(this.MaterialTypeComboBox_SelectedIndexChanged);
//
// ConfrimAddButton
//
this.ConfrimAddButton.Location = new System.Drawing.Point(100, 164);
this.ConfrimAddButton.Name = "ConfrimAddButton";
this.ConfrimAddButton.Size = new System.Drawing.Size(110, 41);
this.ConfrimAddButton.TabIndex = 8;
this.ConfrimAddButton.Text = "确认添加";
this.ConfrimAddButton.UseVisualStyleBackColor = true;
this.ConfrimAddButton.Click += new System.EventHandler(this.ConfrimAddButton_Click);
//
// ChildComboBox
//
this.ChildComboBox.FormattingEnabled = true;
this.ChildComboBox.Location = new System.Drawing.Point(128, 107);
this.ChildComboBox.Name = "ChildComboBox";
this.ChildComboBox.Size = new System.Drawing.Size(136, 20);
this.ChildComboBox.TabIndex = 10;
//
// label5
//
this.label5.AutoSize = true;
this.label5.Location = new System.Drawing.Point(45, 110);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(77, 12);
this.label5.TabIndex = 9;
this.label5.Text = "子物料类型:";
//
// IsUseCheckBox
//
this.IsUseCheckBox.AutoSize = true;
this.IsUseCheckBox.Checked = true;
this.IsUseCheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
this.IsUseCheckBox.Location = new System.Drawing.Point(128, 133);
this.IsUseCheckBox.Name = "IsUseCheckBox";
this.IsUseCheckBox.Size = new System.Drawing.Size(72, 16);
this.IsUseCheckBox.TabIndex = 12;
this.IsUseCheckBox.Text = "是否启用";
this.IsUseCheckBox.UseVisualStyleBackColor = true;
//
// MaterialAddForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(319, 227);
this.Controls.Add(this.IsUseCheckBox);
this.Controls.Add(this.ChildComboBox);
this.Controls.Add(this.label5);
this.Controls.Add(this.ConfrimAddButton);
this.Controls.Add(this.MaterialTypeComboBox);
this.Controls.Add(this.label4);
this.Controls.Add(this.label3);
this.Controls.Add(this.MaterialNameTextBox);
this.Controls.Add(this.label2);
this.Controls.Add(this.MaterialCodeTextBox);
this.Controls.Add(this.label1);
this.Name = "MaterialAddForm";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "添加物料";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label label1;
private System.Windows.Forms.TextBox MaterialCodeTextBox;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.TextBox MaterialNameTextBox;
private System.Windows.Forms.Label label4;
private System.Windows.Forms.ComboBox MaterialTypeComboBox;
private System.Windows.Forms.Button ConfrimAddButton;
private System.Windows.Forms.ComboBox ChildComboBox;
private System.Windows.Forms.Label label5;
private System.Windows.Forms.CheckBox IsUseCheckBox;
}
}