📄 frmpactemployee.designer.cs
字号:
namespace HRP.Personnel
{
partial class frmPactEmployee
{
/// <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.dgvEmployeeList = new System.Windows.Forms.DataGridView();
this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Column2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
((System.ComponentModel.ISupportInitialize)(this.dgvEmployeeList)).BeginInit();
this.SuspendLayout();
//
// dgvEmployeeList
//
this.dgvEmployeeList.BackgroundColor = System.Drawing.SystemColors.Control;
this.dgvEmployeeList.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dgvEmployeeList.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.Column1,
this.Column2});
this.dgvEmployeeList.Location = new System.Drawing.Point(1, 1);
this.dgvEmployeeList.Name = "dgvEmployeeList";
this.dgvEmployeeList.RowTemplate.Height = 23;
this.dgvEmployeeList.Size = new System.Drawing.Size(291, 264);
this.dgvEmployeeList.TabIndex = 0;
this.dgvEmployeeList.MouseClick += new System.Windows.Forms.MouseEventHandler(this.dgvEmployeeList_MouseClick);
//
// Column1
//
this.Column1.DataPropertyName = "EmployeeID";
this.Column1.HeaderText = "员工编号";
this.Column1.Name = "Column1";
//
// Column2
//
this.Column2.DataPropertyName = "EmployeeName";
this.Column2.HeaderText = "员工姓名";
this.Column2.Name = "Column2";
this.Column2.Width = 143;
//
// frmPactEmployee
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(292, 266);
this.Controls.Add(this.dgvEmployeeList);
this.MaximizeBox = false;
this.Name = "frmPactEmployee";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "【员工列表】";
this.Load += new System.EventHandler(this.frmPactEmployee_Load);
((System.ComponentModel.ISupportInitialize)(this.dgvEmployeeList)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.DataGridView dgvEmployeeList;
private System.Windows.Forms.DataGridViewTextBoxColumn Column1;
private System.Windows.Forms.DataGridViewTextBoxColumn Column2;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -