📄 form1.designer.cs
字号:
namespace UserDemo
{
partial class FrmUserDemo
{
/// <summary>
/// 必需的设计器变量。
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// 清理所有正在使用的资源。
/// </summary>
/// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows 窗体设计器生成的代码
/// <summary>
/// 设计器支持所需的方法 - 不要
/// 使用代码编辑器修改此方法的内容。
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
this.bsUser = new System.Windows.Forms.BindingSource(this.components);
this.dataGridView1 = new System.Windows.Forms.DataGridView();
this.btnSearch = new System.Windows.Forms.Button();
this.btnClose = new System.Windows.Forms.Button();
this.btnReset = new System.Windows.Forms.Button();
this.CODE = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.FIRSTNAME = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.LASTNAME = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.EMAIL = new System.Windows.Forms.DataGridViewTextBoxColumn();
((System.ComponentModel.ISupportInitialize)(this.bsUser)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
this.SuspendLayout();
//
// bsUser
//
this.bsUser.AllowNew = true;
//
// dataGridView1
//
this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.CODE,
this.FIRSTNAME,
this.LASTNAME,
this.EMAIL});
this.dataGridView1.Location = new System.Drawing.Point(7, 12);
this.dataGridView1.Name = "dataGridView1";
this.dataGridView1.Size = new System.Drawing.Size(468, 287);
this.dataGridView1.TabIndex = 0;
//
// btnSearch
//
this.btnSearch.Location = new System.Drawing.Point(262, 305);
this.btnSearch.Name = "btnSearch";
this.btnSearch.Size = new System.Drawing.Size(60, 23);
this.btnSearch.TabIndex = 1;
this.btnSearch.Text = "S&earch";
this.btnSearch.UseVisualStyleBackColor = true;
this.btnSearch.Click += new System.EventHandler(this.btnSearch_Click);
//
// btnClose
//
this.btnClose.Location = new System.Drawing.Point(394, 305);
this.btnClose.Name = "btnClose";
this.btnClose.Size = new System.Drawing.Size(60, 23);
this.btnClose.TabIndex = 2;
this.btnClose.Text = "&Close";
this.btnClose.UseVisualStyleBackColor = true;
this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
//
// btnReset
//
this.btnReset.Location = new System.Drawing.Point(328, 305);
this.btnReset.Name = "btnReset";
this.btnReset.Size = new System.Drawing.Size(60, 23);
this.btnReset.TabIndex = 3;
this.btnReset.Text = "&Reset";
this.btnReset.UseVisualStyleBackColor = true;
this.btnReset.Click += new System.EventHandler(this.btnReset_Click);
//
// CODE
//
this.CODE.DataPropertyName = "CODE";
this.CODE.HeaderText = "CODE";
this.CODE.Name = "CODE";
this.CODE.ReadOnly = true;
this.CODE.Width = 70;
//
// FIRSTNAME
//
this.FIRSTNAME.DataPropertyName = "FIRSTNAME";
this.FIRSTNAME.HeaderText = "FIRSTNAME";
this.FIRSTNAME.Name = "FIRSTNAME";
this.FIRSTNAME.ReadOnly = true;
//
// LASTNAME
//
this.LASTNAME.DataPropertyName = "LASTNAME";
this.LASTNAME.HeaderText = "LASTNAME";
this.LASTNAME.Name = "LASTNAME";
this.LASTNAME.ReadOnly = true;
//
// EMAIL
//
this.EMAIL.DataPropertyName = "EMAILADDRESS";
this.EMAIL.HeaderText = "EMAIL";
this.EMAIL.Name = "EMAIL";
this.EMAIL.ReadOnly = true;
this.EMAIL.Width = 130;
//
// FrmUserDemo
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(482, 340);
this.Controls.Add(this.btnReset);
this.Controls.Add(this.btnClose);
this.Controls.Add(this.btnSearch);
this.Controls.Add(this.dataGridView1);
this.Name = "FrmUserDemo";
this.Text = "userDemo";
((System.ComponentModel.ISupportInitialize)(this.bsUser)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.BindingSource bsUser;
private System.Windows.Forms.DataGridView dataGridView1;
private System.Windows.Forms.Button btnSearch;
private System.Windows.Forms.Button btnClose;
private System.Windows.Forms.Button btnReset;
private System.Windows.Forms.DataGridViewTextBoxColumn CODE;
private System.Windows.Forms.DataGridViewTextBoxColumn FIRSTNAME;
private System.Windows.Forms.DataGridViewTextBoxColumn LASTNAME;
private System.Windows.Forms.DataGridViewTextBoxColumn EMAIL;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -