using System.Drawing; using System.Windows.Forms; namespace HighWayIot.Winform.UserControlPages { partial class UserConfigPage { /// /// 必需的设计器变量。 /// private System.ComponentModel.IContainer components = null; /// /// 清理所有正在使用的资源。 /// /// 如果应释放托管资源,为 true;否则为 false。 protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region 组件设计器生成的代码 /// /// 设计器支持所需的方法 - 不要修改 /// 使用代码编辑器修改此方法的内容。 /// private void InitializeComponent() { this.UserDataGridView = new System.Windows.Forms.DataGridView(); this.AddUser = new System.Windows.Forms.Button(); this.UpdateUser = new System.Windows.Forms.Button(); this.DeleteUser = new System.Windows.Forms.Button(); this.ButtonPanel = new System.Windows.Forms.Panel(); this.checkBox1 = new System.Windows.Forms.CheckBox(); ((System.ComponentModel.ISupportInitialize)(this.UserDataGridView)).BeginInit(); this.ButtonPanel.SuspendLayout(); this.SuspendLayout(); // // UserDataGridView // this.UserDataGridView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.UserDataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; this.UserDataGridView.Location = new System.Drawing.Point(0, 65); this.UserDataGridView.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); this.UserDataGridView.Name = "UserDataGridView"; this.UserDataGridView.RowTemplate.Height = 25; this.UserDataGridView.Size = new System.Drawing.Size(883, 497); this.UserDataGridView.TabIndex = 0; // // AddUser // this.AddUser.Location = new System.Drawing.Point(11, 11); this.AddUser.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); this.AddUser.Name = "AddUser"; this.AddUser.Size = new System.Drawing.Size(103, 39); this.AddUser.TabIndex = 1; this.AddUser.Text = "添加用户"; this.AddUser.UseVisualStyleBackColor = true; // // UpdateUser // this.UpdateUser.Location = new System.Drawing.Point(131, 11); this.UpdateUser.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); this.UpdateUser.Name = "UpdateUser"; this.UpdateUser.Size = new System.Drawing.Size(103, 39); this.UpdateUser.TabIndex = 2; this.UpdateUser.Text = "修改用户信息"; this.UpdateUser.UseVisualStyleBackColor = true; this.UpdateUser.Click += new System.EventHandler(this.UpdateUser_Click); // // DeleteUser // this.DeleteUser.Location = new System.Drawing.Point(250, 11); this.DeleteUser.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); this.DeleteUser.Name = "DeleteUser"; this.DeleteUser.Size = new System.Drawing.Size(103, 39); this.DeleteUser.TabIndex = 3; this.DeleteUser.Text = "删除用户信息"; this.DeleteUser.UseVisualStyleBackColor = true; // // ButtonPanel // this.ButtonPanel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.ButtonPanel.Controls.Add(this.checkBox1); this.ButtonPanel.Controls.Add(this.DeleteUser); this.ButtonPanel.Controls.Add(this.UpdateUser); this.ButtonPanel.Controls.Add(this.AddUser); this.ButtonPanel.Location = new System.Drawing.Point(0, 0); this.ButtonPanel.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); this.ButtonPanel.Name = "ButtonPanel"; this.ButtonPanel.Size = new System.Drawing.Size(883, 61); this.ButtonPanel.TabIndex = 4; // // checkBox1 // this.checkBox1.AutoSize = true; this.checkBox1.Location = new System.Drawing.Point(693, 20); this.checkBox1.Name = "checkBox1"; this.checkBox1.Size = new System.Drawing.Size(78, 16); this.checkBox1.TabIndex = 4; this.checkBox1.Text = "checkBox1"; this.checkBox1.UseVisualStyleBackColor = true; // // UserConfigPage // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.BackColor = System.Drawing.SystemColors.ControlLight; this.Controls.Add(this.ButtonPanel); this.Controls.Add(this.UserDataGridView); this.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); this.Name = "UserConfigPage"; this.Size = new System.Drawing.Size(883, 562); ((System.ComponentModel.ISupportInitialize)(this.UserDataGridView)).EndInit(); this.ButtonPanel.ResumeLayout(false); this.ButtonPanel.PerformLayout(); this.ResumeLayout(false); } #endregion private DataGridView UserDataGridView; private Button AddUser; private Button UpdateUser; private Button DeleteUser; private Panel ButtonPanel; private CheckBox checkBox1; } }