📄 querydepartmentform.designer.cs
字号:
namespace MyPersonnel
{
partial class QueryDepartmentForm
{
/// <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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(QueryDepartmentForm));
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
this.toolStrip1 = new System.Windows.Forms.ToolStrip();
this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
this.部门ToolStripComboBox = new System.Windows.Forms.ToolStripComboBox();
this.查询部门员工人事档案ToolStripButton = new System.Windows.Forms.ToolStripButton();
this.打印部门员工人事档案ToolStripButton = new System.Windows.Forms.ToolStripButton();
this.基本档案DataGridView = new System.Windows.Forms.DataGridView();
this.toolStrip1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.基本档案DataGridView)).BeginInit();
this.SuspendLayout();
//
// toolStrip1
//
this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripLabel1,
this.部门ToolStripComboBox,
this.查询部门员工人事档案ToolStripButton,
this.打印部门员工人事档案ToolStripButton});
this.toolStrip1.Location = new System.Drawing.Point(0, 0);
this.toolStrip1.Name = "toolStrip1";
this.toolStrip1.Size = new System.Drawing.Size(542, 25);
this.toolStrip1.TabIndex = 0;
this.toolStrip1.Text = "toolStrip1";
//
// toolStripLabel1
//
this.toolStripLabel1.Name = "toolStripLabel1";
this.toolStripLabel1.Size = new System.Drawing.Size(77, 22);
this.toolStripLabel1.Text = "请选择部门:";
//
// 部门ToolStripComboBox
//
this.部门ToolStripComboBox.Name = "部门ToolStripComboBox";
this.部门ToolStripComboBox.Size = new System.Drawing.Size(121, 25);
//
// 查询部门员工人事档案ToolStripButton
//
this.查询部门员工人事档案ToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("查询部门员工人事档案ToolStripButton.Image")));
this.查询部门员工人事档案ToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
this.查询部门员工人事档案ToolStripButton.Name = "查询部门员工人事档案ToolStripButton";
this.查询部门员工人事档案ToolStripButton.Size = new System.Drawing.Size(145, 22);
this.查询部门员工人事档案ToolStripButton.Text = "查询部门员工人事档案";
this.查询部门员工人事档案ToolStripButton.Click += new System.EventHandler(this.查询部门员工人事档案ToolStripButton_Click);
//
// 打印部门员工人事档案ToolStripButton
//
this.打印部门员工人事档案ToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("打印部门员工人事档案ToolStripButton.Image")));
this.打印部门员工人事档案ToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
this.打印部门员工人事档案ToolStripButton.Name = "打印部门员工人事档案ToolStripButton";
this.打印部门员工人事档案ToolStripButton.Size = new System.Drawing.Size(145, 22);
this.打印部门员工人事档案ToolStripButton.Text = "打印部门员工人事档案";
this.打印部门员工人事档案ToolStripButton.Click += new System.EventHandler(this.打印部门员工人事档案ToolStripButton_Click);
//
// 基本档案DataGridView
//
this.基本档案DataGridView.AllowUserToAddRows = false;
this.基本档案DataGridView.AllowUserToDeleteRows = false;
this.基本档案DataGridView.AllowUserToResizeRows = false;
this.基本档案DataGridView.BackgroundColor = System.Drawing.SystemColors.ActiveCaption;
this.基本档案DataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.基本档案DataGridView.Dock = System.Windows.Forms.DockStyle.Fill;
this.基本档案DataGridView.Location = new System.Drawing.Point(0, 25);
this.基本档案DataGridView.MultiSelect = false;
this.基本档案DataGridView.Name = "基本档案DataGridView";
this.基本档案DataGridView.ReadOnly = true;
this.基本档案DataGridView.RowHeadersVisible = false;
dataGridViewCellStyle1.BackColor = System.Drawing.Color.Green;
dataGridViewCellStyle1.ForeColor = System.Drawing.Color.Yellow;
this.基本档案DataGridView.RowsDefaultCellStyle = dataGridViewCellStyle1;
this.基本档案DataGridView.RowTemplate.Height = 23;
this.基本档案DataGridView.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
this.基本档案DataGridView.Size = new System.Drawing.Size(542, 391);
this.基本档案DataGridView.TabIndex = 28;
//
// QueryDepartmentForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
this.ClientSize = new System.Drawing.Size(542, 416);
this.Controls.Add(this.基本档案DataGridView);
this.Controls.Add(this.toolStrip1);
this.Name = "QueryDepartmentForm";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "查询部门员工人事档案";
this.Load += new System.EventHandler(this.QueryDepartmentForm_Load);
this.toolStrip1.ResumeLayout(false);
this.toolStrip1.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.基本档案DataGridView)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.ToolStrip toolStrip1;
private System.Windows.Forms.ToolStripLabel toolStripLabel1;
private System.Windows.Forms.ToolStripComboBox 部门ToolStripComboBox;
private System.Windows.Forms.ToolStripButton 查询部门员工人事档案ToolStripButton;
private System.Windows.Forms.ToolStripButton 打印部门员工人事档案ToolStripButton;
private System.Windows.Forms.DataGridView 基本档案DataGridView;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -