📄 form1.designer.cs
字号:
namespace StoreProcedureExample1
{
partial class Form1
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.dataGridView1 = new System.Windows.Forms.DataGridView();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.comboBox1 = new System.Windows.Forms.ComboBox();
this.textBox1 = new System.Windows.Forms.TextBox();
this.button1 = new System.Windows.Forms.Button();
this.myDatabaseDataSet1 = new StoreProcedureExample1.MyDatabaseDataSet();
this.selectFilterStudentsTableAdapter1 = new StoreProcedureExample1.MyDatabaseDataSetTableAdapters.SelectFilterStudentsTableAdapter();
this.selectNianJiTableAdapter1 = new StoreProcedureExample1.MyDatabaseDataSetTableAdapters.SelectNianJiTableAdapter();
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.myDatabaseDataSet1)).BeginInit();
this.SuspendLayout();
//
// dataGridView1
//
this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dataGridView1.Dock = System.Windows.Forms.DockStyle.Bottom;
this.dataGridView1.Location = new System.Drawing.Point(0, 54);
this.dataGridView1.Name = "dataGridView1";
this.dataGridView1.RowTemplate.Height = 23;
this.dataGridView1.Size = new System.Drawing.Size(508, 164);
this.dataGridView1.TabIndex = 0;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(12, 22);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(29, 12);
this.label1.TabIndex = 1;
this.label1.Text = "年级";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(183, 22);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(17, 12);
this.label2.TabIndex = 2;
this.label2.Text = "姓";
//
// comboBox1
//
this.comboBox1.FormattingEnabled = true;
this.comboBox1.Location = new System.Drawing.Point(50, 21);
this.comboBox1.Name = "comboBox1";
this.comboBox1.Size = new System.Drawing.Size(127, 20);
this.comboBox1.TabIndex = 3;
//
// textBox1
//
this.textBox1.Location = new System.Drawing.Point(229, 21);
this.textBox1.Name = "textBox1";
this.textBox1.Size = new System.Drawing.Size(91, 21);
this.textBox1.TabIndex = 4;
//
// button1
//
this.button1.Location = new System.Drawing.Point(388, 19);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(72, 21);
this.button1.TabIndex = 5;
this.button1.Text = "查找";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// myDatabaseDataSet1
//
this.myDatabaseDataSet1.DataSetName = "MyDatabaseDataSet";
this.myDatabaseDataSet1.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
//
// selectFilterStudentsTableAdapter1
//
this.selectFilterStudentsTableAdapter1.ClearBeforeFill = true;
//
// selectNianJiTableAdapter1
//
this.selectNianJiTableAdapter1.ClearBeforeFill = true;
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(508, 218);
this.Controls.Add(this.button1);
this.Controls.Add(this.textBox1);
this.Controls.Add(this.comboBox1);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Controls.Add(this.dataGridView1);
this.Name = "Form1";
this.Text = "存储过程示例1";
this.Load += new System.EventHandler(this.Form1_Load);
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.myDatabaseDataSet1)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.DataGridView dataGridView1;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.ComboBox comboBox1;
private System.Windows.Forms.TextBox textBox1;
private System.Windows.Forms.Button button1;
private MyDatabaseDataSet myDatabaseDataSet1;
private StoreProcedureExample1.MyDatabaseDataSetTableAdapters.SelectFilterStudentsTableAdapter selectFilterStudentsTableAdapter1;
private StoreProcedureExample1.MyDatabaseDataSetTableAdapters.SelectNianJiTableAdapter selectNianJiTableAdapter1;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -