📄 frmpactmanage.designer.cs
字号:
// tlcmbData
//
this.tlcmbData.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.tlcmbData.FlatStyle = System.Windows.Forms.FlatStyle.Standard;
this.tlcmbData.Items.AddRange(new object[] {
"合同编号",
"员工编号",
"员工姓名"});
this.tlcmbData.Name = "tlcmbData";
this.tlcmbData.Size = new System.Drawing.Size(121, 25);
//
// toolStripSeparator7
//
this.toolStripSeparator7.Name = "toolStripSeparator7";
this.toolStripSeparator7.Size = new System.Drawing.Size(6, 25);
//
// toolStripLabel2
//
this.toolStripLabel2.Name = "toolStripLabel2";
this.toolStripLabel2.Size = new System.Drawing.Size(41, 22);
this.toolStripLabel2.Text = "关键字";
//
// tltxtKeyword
//
this.tltxtKeyword.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.tltxtKeyword.Name = "tltxtKeyword";
this.tltxtKeyword.Size = new System.Drawing.Size(100, 25);
//
// tlbtnSearch
//
this.tlbtnSearch.Image = global::HRP.Properties.Resources.查询;
this.tlbtnSearch.ImageTransparentColor = System.Drawing.Color.Magenta;
this.tlbtnSearch.Name = "tlbtnSearch";
this.tlbtnSearch.Size = new System.Drawing.Size(49, 22);
this.tlbtnSearch.Text = "查询";
this.tlbtnSearch.Click += new System.EventHandler(this.tlbtnSearch_Click);
//
// toolStripSeparator8
//
this.toolStripSeparator8.Name = "toolStripSeparator8";
this.toolStripSeparator8.Size = new System.Drawing.Size(6, 25);
//
// toolStripSeparator9
//
this.toolStripSeparator9.Name = "toolStripSeparator9";
this.toolStripSeparator9.Size = new System.Drawing.Size(6, 25);
//
// dgvPactManage
//
this.dgvPactManage.AllowUserToAddRows = false;
this.dgvPactManage.AllowUserToDeleteRows = false;
this.dgvPactManage.AllowUserToOrderColumns = true;
this.dgvPactManage.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dgvPactManage.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.Column1,
this.Column2,
this.Column3,
this.Column4,
this.Column5,
this.Column6,
this.Column7,
this.Column8,
this.Column9});
this.dgvPactManage.Location = new System.Drawing.Point(0, 28);
this.dgvPactManage.Name = "dgvPactManage";
this.dgvPactManage.ReadOnly = true;
this.dgvPactManage.RowTemplate.Height = 23;
this.dgvPactManage.Size = new System.Drawing.Size(639, 376);
this.dgvPactManage.TabIndex = 1;
//
// Column1
//
this.Column1.DataPropertyName = "EmployeeID";
this.Column1.Frozen = true;
this.Column1.HeaderText = "员工编号";
this.Column1.Name = "Column1";
this.Column1.ReadOnly = true;
//
// Column2
//
this.Column2.DataPropertyName = "EmployeeName";
this.Column2.Frozen = true;
this.Column2.HeaderText = "员工姓名";
this.Column2.Name = "Column2";
this.Column2.ReadOnly = true;
//
// Column3
//
this.Column3.DataPropertyName = "PactID";
this.Column3.HeaderText = "合同编号";
this.Column3.Name = "Column3";
this.Column3.ReadOnly = true;
//
// Column4
//
this.Column4.DataPropertyName = "PactType";
this.Column4.HeaderText = "合同类型";
this.Column4.Name = "Column4";
this.Column4.ReadOnly = true;
//
// Column5
//
this.Column5.DataPropertyName = "PactStartTime";
this.Column5.HeaderText = "合同开始日期";
this.Column5.Name = "Column5";
this.Column5.ReadOnly = true;
this.Column5.Width = 120;
//
// Column6
//
this.Column6.DataPropertyName = "PactEndTime";
this.Column6.HeaderText = "合同结束日期";
this.Column6.Name = "Column6";
this.Column6.ReadOnly = true;
this.Column6.Width = 120;
//
// Column7
//
this.Column7.DataPropertyName = "Probation";
this.Column7.HeaderText = "试用期";
this.Column7.Name = "Column7";
this.Column7.ReadOnly = true;
//
// Column8
//
this.Column8.DataPropertyName = "Remark";
this.Column8.HeaderText = "备注";
this.Column8.Name = "Column8";
this.Column8.ReadOnly = true;
//
// Column9
//
this.Column9.DataPropertyName = "State";
this.Column9.HeaderText = "状态";
this.Column9.Name = "Column9";
this.Column9.ReadOnly = true;
//
// frmPactManage
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(639, 406);
this.Controls.Add(this.dgvPactManage);
this.Controls.Add(this.toolStrip1);
this.Name = "frmPactManage";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "【合同管理】";
this.Load += new System.EventHandler(this.frmPactManage_Load);
this.toolStrip1.ResumeLayout(false);
this.toolStrip1.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.dgvPactManage)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.ToolStrip toolStrip1;
public System.Windows.Forms.DataGridView dgvPactManage;
private System.Windows.Forms.ToolStripButton tlbtnAdd;
private System.Windows.Forms.ToolStripButton tlbtnEdit;
private System.Windows.Forms.ToolStripButton tlbtnDelete;
private System.Windows.Forms.ToolStripButton tlbtnSearch;
private System.Windows.Forms.ToolStripButton tlbtnAll;
private System.Windows.Forms.ToolStripButton tlbtnAtTerm;
private System.Windows.Forms.ToolStripButton tlbtnGoOn;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator2;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator3;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator4;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator5;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator6;
private System.Windows.Forms.ToolStripLabel toolStripLabel1;
private System.Windows.Forms.ToolStripComboBox tlcmbData;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator7;
private System.Windows.Forms.ToolStripLabel toolStripLabel2;
private System.Windows.Forms.ToolStripTextBox tltxtKeyword;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator8;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator9;
private System.Windows.Forms.DataGridViewTextBoxColumn Column1;
private System.Windows.Forms.DataGridViewTextBoxColumn Column2;
private System.Windows.Forms.DataGridViewTextBoxColumn Column3;
private System.Windows.Forms.DataGridViewTextBoxColumn Column4;
private System.Windows.Forms.DataGridViewTextBoxColumn Column5;
private System.Windows.Forms.DataGridViewTextBoxColumn Column6;
private System.Windows.Forms.DataGridViewTextBoxColumn Column7;
private System.Windows.Forms.DataGridViewTextBoxColumn Column8;
private System.Windows.Forms.DataGridViewTextBoxColumn Column9;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -