Files
FullAutoWaterCheck/全自动水压检测仪/Forms/UserManagerForm.Designer.cs
2026-01-26 18:47:27 +08:00

191 lines
8.8 KiB
C#

namespace
{
partial class UserManagerForm
{
/// <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.dgvUsers = new System.Windows.Forms.DataGridView();
this.btnRefresh = new System.Windows.Forms.Button();
this.btnResetPassword = new System.Windows.Forms.Button();
this.btnDeleteUser = new System.Windows.Forms.Button();
this.btnEditUser = new System.Windows.Forms.Button();
this.btnAddUser = new System.Windows.Forms.Button();
this.panelTop = new System.Windows.Forms.Panel();
this.lblTitle = new System.Windows.Forms.Label();
this.panelBottom = new System.Windows.Forms.Panel();
this.panelMain = new System.Windows.Forms.Panel();
((System.ComponentModel.ISupportInitialize)(this.dgvUsers)).BeginInit();
this.panelTop.SuspendLayout();
this.panelBottom.SuspendLayout();
this.panelMain.SuspendLayout();
this.SuspendLayout();
//
// dgvUsers
//
this.dgvUsers.AllowUserToAddRows = false;
this.dgvUsers.AllowUserToDeleteRows = false;
this.dgvUsers.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
this.dgvUsers.BackgroundColor = System.Drawing.Color.White;
this.dgvUsers.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dgvUsers.Location = new System.Drawing.Point(10, 10);
this.dgvUsers.Name = "dgvUsers";
this.dgvUsers.ReadOnly = true;
this.dgvUsers.RowHeadersVisible = false;
this.dgvUsers.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
this.dgvUsers.Size = new System.Drawing.Size(780, 350);
this.dgvUsers.TabIndex = 0;
this.dgvUsers.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvUsers_CellClick);
//
// btnRefresh
//
this.btnRefresh.Location = new System.Drawing.Point(450, 10);
this.btnRefresh.Name = "btnRefresh";
this.btnRefresh.Size = new System.Drawing.Size(90, 35);
this.btnRefresh.TabIndex = 4;
this.btnRefresh.Text = "刷新";
this.btnRefresh.UseVisualStyleBackColor = true;
this.btnRefresh.Click += new System.EventHandler(this.btnRefresh_Click);
//
// btnResetPassword
//
this.btnResetPassword.Location = new System.Drawing.Point(340, 10);
this.btnResetPassword.Name = "btnResetPassword";
this.btnResetPassword.Size = new System.Drawing.Size(90, 35);
this.btnResetPassword.TabIndex = 3;
this.btnResetPassword.Text = "重置密码";
this.btnResetPassword.UseVisualStyleBackColor = true;
this.btnResetPassword.Click += new System.EventHandler(this.btnResetPassword_Click);
//
// btnDeleteUser
//
this.btnDeleteUser.Location = new System.Drawing.Point(230, 10);
this.btnDeleteUser.Name = "btnDeleteUser";
this.btnDeleteUser.Size = new System.Drawing.Size(90, 35);
this.btnDeleteUser.TabIndex = 2;
this.btnDeleteUser.Text = "删除用户";
this.btnDeleteUser.UseVisualStyleBackColor = true;
this.btnDeleteUser.Click += new System.EventHandler(this.btnDeleteUser_Click);
//
// btnEditUser
//
this.btnEditUser.Location = new System.Drawing.Point(120, 10);
this.btnEditUser.Name = "btnEditUser";
this.btnEditUser.Size = new System.Drawing.Size(90, 35);
this.btnEditUser.TabIndex = 1;
this.btnEditUser.Text = "编辑用户";
this.btnEditUser.UseVisualStyleBackColor = true;
this.btnEditUser.Click += new System.EventHandler(this.btnEditUser_Click);
//
// btnAddUser
//
this.btnAddUser.Location = new System.Drawing.Point(10, 10);
this.btnAddUser.Name = "btnAddUser";
this.btnAddUser.Size = new System.Drawing.Size(90, 35);
this.btnAddUser.TabIndex = 0;
this.btnAddUser.Text = "添加用户";
this.btnAddUser.UseVisualStyleBackColor = true;
this.btnAddUser.Click += new System.EventHandler(this.btnAddUser_Click);
//
// panelTop
//
this.panelTop.Controls.Add(this.lblTitle);
this.panelTop.Dock = System.Windows.Forms.DockStyle.Top;
this.panelTop.Location = new System.Drawing.Point(0, 0);
this.panelTop.Name = "panelTop";
this.panelTop.Size = new System.Drawing.Size(800, 50);
this.panelTop.TabIndex = 1;
//
// lblTitle
//
this.lblTitle.AutoSize = true;
this.lblTitle.Font = new System.Drawing.Font("Microsoft YaHei UI", 16F, System.Drawing.FontStyle.Bold);
this.lblTitle.Location = new System.Drawing.Point(15, 10);
this.lblTitle.Name = "lblTitle";
this.lblTitle.Size = new System.Drawing.Size(108, 31);
this.lblTitle.TabIndex = 0;
this.lblTitle.Text = "用户管理";
//
// panelBottom
//
this.panelBottom.Controls.Add(this.btnRefresh);
this.panelBottom.Controls.Add(this.btnResetPassword);
this.panelBottom.Controls.Add(this.btnDeleteUser);
this.panelBottom.Controls.Add(this.btnEditUser);
this.panelBottom.Controls.Add(this.btnAddUser);
this.panelBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
this.panelBottom.Location = new System.Drawing.Point(0, 420);
this.panelBottom.Name = "panelBottom";
this.panelBottom.Size = new System.Drawing.Size(800, 60);
this.panelBottom.TabIndex = 2;
//
// panelMain
//
this.panelMain.Controls.Add(this.dgvUsers);
this.panelMain.Dock = System.Windows.Forms.DockStyle.Fill;
this.panelMain.Location = new System.Drawing.Point(0, 50);
this.panelMain.Name = "panelMain";
this.panelMain.Size = new System.Drawing.Size(800, 370);
this.panelMain.TabIndex = 3;
//
// UserManagerForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 17F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(800, 480);
this.Controls.Add(this.panelMain);
this.Controls.Add(this.panelBottom);
this.Controls.Add(this.panelTop);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.MaximizeBox = false;
this.Name = "UserManagerForm";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "用户管理";
this.Load += new System.EventHandler(this.UserManagerForm_Load);
((System.ComponentModel.ISupportInitialize)(this.dgvUsers)).EndInit();
this.panelTop.ResumeLayout(false);
this.panelTop.PerformLayout();
this.panelBottom.ResumeLayout(false);
this.panelMain.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.DataGridView dgvUsers;
private System.Windows.Forms.Button btnRefresh;
private System.Windows.Forms.Button btnResetPassword;
private System.Windows.Forms.Button btnDeleteUser;
private System.Windows.Forms.Button btnEditUser;
private System.Windows.Forms.Button btnAddUser;
private System.Windows.Forms.Panel panelTop;
private System.Windows.Forms.Label lblTitle;
private System.Windows.Forms.Panel panelBottom;
private System.Windows.Forms.Panel panelMain;
}
}