Files
LL-28/SLC1-N/UserManagement.Designer.cs
2025-11-14 09:41:37 +08:00

133 lines
5.5 KiB
C#

namespace SLC1_N
{
partial class UserManagement
{
/// <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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(UserManagement));
this.label3 = new System.Windows.Forms.Label();
this.Characters = new System.Windows.Forms.ComboBox();
this.Account = new System.Windows.Forms.ComboBox();
this.label2 = new System.Windows.Forms.Label();
this.Add = new System.Windows.Forms.Button();
this.Delete = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// label3
//
this.label3.AutoSize = true;
this.label3.Font = new System.Drawing.Font("宋体", 13F);
this.label3.Location = new System.Drawing.Point(136, 85);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(44, 18);
this.label3.TabIndex = 62;
this.label3.Text = "权限";
//
// Characters
//
this.Characters.Font = new System.Drawing.Font("宋体", 15F);
this.Characters.FormattingEnabled = true;
this.Characters.Items.AddRange(new object[] {
"工程师"});
this.Characters.Location = new System.Drawing.Point(60, 106);
this.Characters.Name = "Characters";
this.Characters.Size = new System.Drawing.Size(196, 28);
this.Characters.TabIndex = 61;
this.Characters.TabStop = false;
this.Characters.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Characters_KeyDown);
//
// Account
//
this.Account.Font = new System.Drawing.Font("宋体", 15F);
this.Account.FormattingEnabled = true;
this.Account.Location = new System.Drawing.Point(60, 40);
this.Account.Name = "Account";
this.Account.Size = new System.Drawing.Size(196, 28);
this.Account.TabIndex = 58;
//
// label2
//
this.label2.AutoSize = true;
this.label2.Font = new System.Drawing.Font("宋体", 13F);
this.label2.Location = new System.Drawing.Point(91, 14);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(134, 18);
this.label2.TabIndex = 57;
this.label2.Text = "请选择账户名称";
//
// Add
//
this.Add.Font = new System.Drawing.Font("宋体", 12F);
this.Add.Location = new System.Drawing.Point(104, 222);
this.Add.Name = "Add";
this.Add.Size = new System.Drawing.Size(108, 49);
this.Add.TabIndex = 56;
this.Add.Text = "新建";
this.Add.UseVisualStyleBackColor = true;
this.Add.Click += new System.EventHandler(this.Add_Click);
//
// Delete
//
this.Delete.Font = new System.Drawing.Font("宋体", 12F);
this.Delete.Location = new System.Drawing.Point(104, 167);
this.Delete.Name = "Delete";
this.Delete.Size = new System.Drawing.Size(108, 49);
this.Delete.TabIndex = 55;
this.Delete.Text = "删除";
this.Delete.UseVisualStyleBackColor = true;
this.Delete.Click += new System.EventHandler(this.Delete_Click);
//
// UserManagement
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(317, 290);
this.Controls.Add(this.label3);
this.Controls.Add(this.Characters);
this.Controls.Add(this.Account);
this.Controls.Add(this.label2);
this.Controls.Add(this.Add);
this.Controls.Add(this.Delete);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "UserManagement";
this.Text = "用户管理";
this.Load += new System.EventHandler(this.UserManagement_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label label3;
private System.Windows.Forms.ComboBox Characters;
private System.Windows.Forms.ComboBox Account;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Button Add;
private System.Windows.Forms.Button Delete;
}
}