banboshi_V1/halftoneproject-master/Code/FrmUserInfo.Designer.cs
2023-10-31 13:19:29 +08:00

178 lines
7.3 KiB
C#

namespace ProductionControl
{
partial class FrmUserInfo
{
/// <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.label5 = new System.Windows.Forms.Label();
this.txtNote = new System.Windows.Forms.TextBox();
this.label3 = new System.Windows.Forms.Label();
this.txtName = new System.Windows.Forms.TextBox();
this.label4 = new System.Windows.Forms.Label();
this.txtCode = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
this.cobRoleId = new System.Windows.Forms.ComboBox();
this.btnCancel = new System.Windows.Forms.Button();
this.btnSave = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// label5
//
this.label5.AutoSize = true;
this.label5.Location = new System.Drawing.Point(312, 86);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(44, 18);
this.label5.TabIndex = 26;
this.label5.Text = "备注";
//
// txtNote
//
this.txtNote.Location = new System.Drawing.Point(362, 76);
this.txtNote.Name = "txtNote";
this.txtNote.Size = new System.Drawing.Size(185, 28);
this.txtNote.TabIndex = 25;
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(27, 86);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(44, 18);
this.label3.TabIndex = 22;
this.label3.Text = "角色";
//
// txtName
//
this.txtName.Location = new System.Drawing.Point(362, 32);
this.txtName.Name = "txtName";
this.txtName.Size = new System.Drawing.Size(185, 28);
this.txtName.TabIndex = 21;
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(312, 42);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(44, 18);
this.label4.TabIndex = 20;
this.label4.Text = "名称";
//
// txtCode
//
this.txtCode.Location = new System.Drawing.Point(77, 32);
this.txtCode.Name = "txtCode";
this.txtCode.Size = new System.Drawing.Size(185, 28);
this.txtCode.TabIndex = 19;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(27, 42);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(44, 18);
this.label1.TabIndex = 18;
this.label1.Text = "帐号";
//
// cobRoleId
//
this.cobRoleId.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cobRoleId.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
this.cobRoleId.FormattingEnabled = true;
this.cobRoleId.Items.AddRange(new object[] {
"管理员",
"操作员"});
this.cobRoleId.Location = new System.Drawing.Point(77, 78);
this.cobRoleId.Name = "cobRoleId";
this.cobRoleId.Size = new System.Drawing.Size(185, 26);
this.cobRoleId.TabIndex = 27;
//
// btnCancel
//
this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.btnCancel.Location = new System.Drawing.Point(315, 132);
this.btnCancel.Name = "btnCancel";
this.btnCancel.Size = new System.Drawing.Size(92, 32);
this.btnCancel.TabIndex = 30;
this.btnCancel.Text = "取消";
this.btnCancel.UseVisualStyleBackColor = true;
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
//
// btnSave
//
this.btnSave.Location = new System.Drawing.Point(174, 132);
this.btnSave.Name = "btnSave";
this.btnSave.Size = new System.Drawing.Size(92, 32);
this.btnSave.TabIndex = 31;
this.btnSave.Text = "保存";
this.btnSave.UseVisualStyleBackColor = true;
this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
//
// FrmUserInfo
//
this.AcceptButton = this.btnSave;
this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 18F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.SystemColors.ActiveCaption;
this.CancelButton = this.btnCancel;
this.ClientSize = new System.Drawing.Size(571, 176);
this.Controls.Add(this.btnCancel);
this.Controls.Add(this.btnSave);
this.Controls.Add(this.cobRoleId);
this.Controls.Add(this.label5);
this.Controls.Add(this.txtNote);
this.Controls.Add(this.label3);
this.Controls.Add(this.txtName);
this.Controls.Add(this.label4);
this.Controls.Add(this.txtCode);
this.Controls.Add(this.label1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "FrmUserInfo";
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "用户信息";
this.Load += new System.EventHandler(this.FrmUserInfo_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label label5;
private System.Windows.Forms.TextBox txtNote;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.TextBox txtName;
private System.Windows.Forms.Label label4;
private System.Windows.Forms.TextBox txtCode;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.ComboBox cobRoleId;
private System.Windows.Forms.Button btnCancel;
private System.Windows.Forms.Button btnSave;
}
}