📄 form1.designer.cs
字号:
namespace _2._._
{
partial class Form1
{
/// <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();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle8 = new System.Windows.Forms.DataGridViewCellStyle();
this.label1 = new System.Windows.Forms.Label();
this.textBox1 = new System.Windows.Forms.TextBox();
this.button1 = new System.Windows.Forms.Button();
this.button2 = new System.Windows.Forms.Button();
this.button3 = new System.Windows.Forms.Button();
this.employeeDataSet = new _12._4._3.employeeDataSet();
this.employeeTableAdapter = new _12._4._3.employeeDataSetTableAdapters.employeeTableAdapter();
this.dataGridView1 = new System.Windows.Forms.DataGridView();
this.employeeBindingSource = new System.Windows.Forms.BindingSource(this.components);
this.编号DataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.姓名DataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.部门DataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.基本工资DataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.职务工资DataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.补贴DataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.奖金DataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.应发工资DataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.扣税DataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.实发工资DataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
((System.ComponentModel.ISupportInitialize)(this.employeeDataSet)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.employeeBindingSource)).BeginInit();
this.SuspendLayout();
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(12, 18);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(97, 15);
this.label1.TabIndex = 0;
this.label1.Text = "输入部门名称";
//
// textBox1
//
this.textBox1.Location = new System.Drawing.Point(115, 12);
this.textBox1.Name = "textBox1";
this.textBox1.Size = new System.Drawing.Size(137, 25);
this.textBox1.TabIndex = 1;
//
// button1
//
this.button1.Location = new System.Drawing.Point(283, 14);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(95, 23);
this.button1.TabIndex = 2;
this.button1.Text = "开始查询";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// button2
//
this.button2.Location = new System.Drawing.Point(397, 14);
this.button2.Name = "button2";
this.button2.Size = new System.Drawing.Size(95, 23);
this.button2.TabIndex = 3;
this.button2.Text = "显示全部";
this.button2.UseVisualStyleBackColor = true;
this.button2.Click += new System.EventHandler(this.button2_Click);
//
// button3
//
this.button3.Location = new System.Drawing.Point(514, 14);
this.button3.Name = "button3";
this.button3.Size = new System.Drawing.Size(95, 23);
this.button3.TabIndex = 4;
this.button3.Text = "退 出";
this.button3.UseVisualStyleBackColor = true;
this.button3.Click += new System.EventHandler(this.button3_Click);
//
// employeeDataSet
//
this.employeeDataSet.DataSetName = "employeeDataSet";
this.employeeDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
//
// employeeTableAdapter
//
this.employeeTableAdapter.ClearBeforeFill = true;
//
// dataGridView1
//
this.dataGridView1.AllowUserToAddRows = false;
this.dataGridView1.AllowUserToDeleteRows = false;
this.dataGridView1.AutoGenerateColumns = false;
dataGridViewCellStyle7.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
dataGridViewCellStyle7.BackColor = System.Drawing.SystemColors.Control;
dataGridViewCellStyle7.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
dataGridViewCellStyle7.ForeColor = System.Drawing.SystemColors.WindowText;
dataGridViewCellStyle7.SelectionBackColor = System.Drawing.SystemColors.Highlight;
dataGridViewCellStyle7.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
dataGridViewCellStyle7.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
this.dataGridView1.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle7;
this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.编号DataGridViewTextBoxColumn,
this.姓名DataGridViewTextBoxColumn,
this.部门DataGridViewTextBoxColumn,
this.基本工资DataGridViewTextBoxColumn,
this.职务工资DataGridViewTextBoxColumn,
this.补贴DataGridViewTextBoxColumn,
this.奖金DataGridViewTextBoxColumn,
this.应发工资DataGridViewTextBoxColumn,
this.扣税DataGridViewTextBoxColumn,
this.实发工资DataGridViewTextBoxColumn});
this.dataGridView1.DataSource = this.employeeBindingSource;
dataGridViewCellStyle8.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
dataGridViewCellStyle8.BackColor = System.Drawing.SystemColors.Window;
dataGridViewCellStyle8.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
dataGridViewCellStyle8.ForeColor = System.Drawing.SystemColors.ControlText;
dataGridViewCellStyle8.Format = "N2";
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -