📄 form1.designer.cs
字号:
namespace 教务系统
{
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();
this.textBoxIndex = new System.Windows.Forms.TextBox();
this.button1 = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.dataGridView1 = new System.Windows.Forms.DataGridView();
this.教务系统DataSet = new 教务系统.教务系统DataSet();
this.教务系统DataSetBindingSource = new System.Windows.Forms.BindingSource(this.components);
this.学生BindingSource = new System.Windows.Forms.BindingSource(this.components);
this.学生TableAdapter = new 教务系统.教务系统DataSetTableAdapters.学生TableAdapter();
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.dataGridView1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.教务系统DataSet)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.教务系统DataSetBindingSource)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.学生BindingSource)).BeginInit();
this.SuspendLayout();
//
// textBoxIndex
//
this.textBoxIndex.Location = new System.Drawing.Point(156, 197);
this.textBoxIndex.Name = "textBoxIndex";
this.textBoxIndex.Size = new System.Drawing.Size(100, 21);
this.textBoxIndex.TabIndex = 1;
//
// button1
//
this.button1.Location = new System.Drawing.Point(285, 197);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(75, 23);
this.button1.TabIndex = 2;
this.button1.Text = "查询";
this.button1.UseVisualStyleBackColor = true;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(111, 200);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(29, 12);
this.label1.TabIndex = 3;
this.label1.Text = "学号";
//
// dataGridView1
//
this.dataGridView1.AutoGenerateColumns = false;
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.dataGridView1.DataSource = this.学生BindingSource;
this.dataGridView1.Location = new System.Drawing.Point(0, 0);
this.dataGridView1.Name = "dataGridView1";
this.dataGridView1.RowTemplate.Height = 23;
this.dataGridView1.Size = new System.Drawing.Size(443, 150);
this.dataGridView1.TabIndex = 4;
//
// 教务系统DataSet
//
this.教务系统DataSet.DataSetName = "教务系统DataSet";
this.教务系统DataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
//
// 教务系统DataSetBindingSource
//
this.教务系统DataSetBindingSource.DataSource = this.教务系统DataSet;
this.教务系统DataSetBindingSource.Position = 0;
//
// 学生BindingSource
//
this.学生BindingSource.DataMember = "学生";
this.学生BindingSource.DataSource = this.教务系统DataSetBindingSource;
//
// 学生TableAdapter
//
this.学生TableAdapter.ClearBeforeFill = true;
//
// 学号DataGridViewTextBoxColumn
//
this.学号DataGridViewTextBoxColumn.DataPropertyName = "学号";
this.学号DataGridViewTextBoxColumn.HeaderText = "学号";
this.学号DataGridViewTextBoxColumn.Name = "学号DataGridViewTextBoxColumn";
//
// 姓名DataGridViewTextBoxColumn
//
this.姓名DataGridViewTextBoxColumn.DataPropertyName = "姓名";
this.姓名DataGridViewTextBoxColumn.HeaderText = "姓名";
this.姓名DataGridViewTextBoxColumn.Name = "姓名DataGridViewTextBoxColumn";
//
// 专业DataGridViewTextBoxColumn
//
this.专业DataGridViewTextBoxColumn.DataPropertyName = "专业";
this.专业DataGridViewTextBoxColumn.HeaderText = "专业";
this.专业DataGridViewTextBoxColumn.Name = "专业DataGridViewTextBoxColumn";
//
// 宿舍DataGridViewTextBoxColumn
//
this.宿舍DataGridViewTextBoxColumn.DataPropertyName = "宿舍";
this.宿舍DataGridViewTextBoxColumn.HeaderText = "宿舍";
this.宿舍DataGridViewTextBoxColumn.Name = "宿舍DataGridViewTextBoxColumn";
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(442, 246);
this.Controls.Add(this.dataGridView1);
this.Controls.Add(this.label1);
this.Controls.Add(this.button1);
this.Controls.Add(this.textBoxIndex);
this.Name = "Form1";
this.Text = "Form1";
this.Load += new System.EventHandler(this.Form1_Load);
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.教务系统DataSet)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.教务系统DataSetBindingSource)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.学生BindingSource)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.TextBox textBoxIndex;
private System.Windows.Forms.Button button1;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.DataGridView dataGridView1;
private System.Windows.Forms.BindingSource 教务系统DataSetBindingSource;
private 教务系统DataSet 教务系统DataSet;
private System.Windows.Forms.BindingSource 学生BindingSource;
private 教务系统.教务系统DataSetTableAdapters.学生TableAdapter 学生TableAdapter;
private System.Windows.Forms.DataGridViewTextBoxColumn 学号DataGridViewTextBoxColumn;
private System.Windows.Forms.DataGridViewTextBoxColumn 姓名DataGridViewTextBoxColumn;
private System.Windows.Forms.DataGridViewTextBoxColumn 专业DataGridViewTextBoxColumn;
private System.Windows.Forms.DataGridViewTextBoxColumn 宿舍DataGridViewTextBoxColumn;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -