using System.ComponentModel; using System.Windows.Forms; using DevComponents.DotNetBar; using DevComponents.DotNetBar.Controls; namespace Cyberpipe { partial class FrmUserManager { /// <summary> /// Required designer variable. /// </summary> private 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.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle(); this.dataGridViewX1 = new DevComponents.DotNetBar.Controls.DataGridViewX(); this.labelX1 = new DevComponents.DotNetBar.LabelX(); this.buttonX1 = new DevComponents.DotNetBar.ButtonX(); this.编号 = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.用户名 = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.类型 = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.编辑 = new System.Windows.Forms.DataGridViewLinkColumn(); this.删除 = new System.Windows.Forms.DataGridViewLinkColumn(); ((System.ComponentModel.ISupportInitialize)(this.dataGridViewX1)).BeginInit(); this.SuspendLayout(); // // dataGridViewX1 // this.dataGridViewX1.AllowUserToAddRows = false; this.dataGridViewX1.AllowUserToDeleteRows = false; this.dataGridViewX1.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.dataGridViewX1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; this.dataGridViewX1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { this.编号, this.用户名, this.类型, this.编辑, this.删除}); dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft; dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Window; dataGridViewCellStyle1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.ControlText; dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight; dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.ControlText; dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.False; this.dataGridViewX1.DefaultCellStyle = dataGridViewCellStyle1; this.dataGridViewX1.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(170)))), ((int)(((byte)(170)))), ((int)(((byte)(170))))); this.dataGridViewX1.Location = new System.Drawing.Point(9, 40); this.dataGridViewX1.Name = "dataGridViewX1"; this.dataGridViewX1.ReadOnly = true; this.dataGridViewX1.RowTemplate.Height = 23; this.dataGridViewX1.Size = new System.Drawing.Size(533, 249); this.dataGridViewX1.TabIndex = 0; this.dataGridViewX1.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridViewX1_CellClick); // // labelX1 // // // // this.labelX1.BackgroundStyle.Class = ""; this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square; this.labelX1.Location = new System.Drawing.Point(14, 13); this.labelX1.Name = "labelX1"; this.labelX1.Size = new System.Drawing.Size(139, 23); this.labelX1.TabIndex = 1; this.labelX1.Text = "用户信息列表:"; // // buttonX1 // this.buttonX1.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; this.buttonX1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.buttonX1.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground; this.buttonX1.Location = new System.Drawing.Point(467, 300); this.buttonX1.Name = "buttonX1"; this.buttonX1.Size = new System.Drawing.Size(75, 23); this.buttonX1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled; this.buttonX1.TabIndex = 2; this.buttonX1.Text = "关闭"; this.buttonX1.Click += new System.EventHandler(this.buttonX1_Click); // // 编号 // this.编号.DataPropertyName = "id"; this.编号.HeaderText = "编号"; this.编号.Name = "编号"; this.编号.ReadOnly = true; // // 用户名 // this.用户名.DataPropertyName = "username"; this.用户名.HeaderText = "用户名"; this.用户名.Name = "用户名"; this.用户名.ReadOnly = true; // // 类型 // this.类型.DataPropertyName = "password"; this.类型.HeaderText = "密码"; this.类型.Name = "类型"; this.类型.ReadOnly = true; this.类型.Visible = false; // // 编辑 // this.编辑.DataPropertyName = "编辑"; this.编辑.HeaderText = "编辑"; this.编辑.Name = "编辑"; this.编辑.ReadOnly = true; // // 删除 // this.删除.DataPropertyName = "删除"; this.删除.HeaderText = "删除"; this.删除.Name = "删除"; this.删除.ReadOnly = true; // // FrmUserManager // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(554, 330); this.Controls.Add(this.buttonX1); this.Controls.Add(this.labelX1); this.Controls.Add(this.dataGridViewX1); this.DoubleBuffered = true; this.EnableGlass = false; this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow; this.MaximizeBox = false; this.Name = "FrmUserManager"; this.ShowIcon = false; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "用户管理"; this.Load += new System.EventHandler(this.FrmUserRepoMgr_Load); ((System.ComponentModel.ISupportInitialize)(this.dataGridViewX1)).EndInit(); this.ResumeLayout(false); } #endregion private DataGridViewX dataGridViewX1; private LabelX labelX1; private ButtonX buttonX1; private DataGridViewTextBoxColumn 编号; private DataGridViewTextBoxColumn 用户名; private DataGridViewTextBoxColumn 类型; private DataGridViewLinkColumn 编辑; private DataGridViewLinkColumn 删除; } }