📄 formstudent.designer.cs
字号:
namespace StudentTest
{
partial class FormStudent
{
/// <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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormStudent));
this.dgvStudent = new System.Windows.Forms.DataGridView();
this.SNO = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.SName = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Age = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Address = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Sex = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
this.删除ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.textBox1 = new System.Windows.Forms.TextBox();
this.button1 = new System.Windows.Forms.Button();
((System.ComponentModel.ISupportInitialize)(this.dgvStudent)).BeginInit();
this.contextMenuStrip1.SuspendLayout();
this.SuspendLayout();
//
// dgvStudent
//
this.dgvStudent.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dgvStudent.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.SNO,
this.SName,
this.Age,
this.Address,
this.Sex});
this.dgvStudent.ContextMenuStrip = this.contextMenuStrip1;
resources.ApplyResources(this.dgvStudent, "dgvStudent");
this.dgvStudent.Name = "dgvStudent";
this.dgvStudent.RowTemplate.Height = 23;
this.dgvStudent.CellLeave += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvStudent_CellLeave);
this.dgvStudent.RowValidating += new System.Windows.Forms.DataGridViewCellCancelEventHandler(this.dgvStudent_RowValidating);
this.dgvStudent.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvStudent_CellClick);
this.dgvStudent.CellValidating += new System.Windows.Forms.DataGridViewCellValidatingEventHandler(this.dgvStudent_CellValidating);
this.dgvStudent.CellEndEdit += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvStudent_CellEndEdit);
this.dgvStudent.Scroll += new System.Windows.Forms.ScrollEventHandler(this.dgvStudent_Scroll);
this.dgvStudent.Resize += new System.EventHandler(this.dgvStudent_Resize);
//
// SNO
//
resources.ApplyResources(this.SNO, "SNO");
this.SNO.Name = "SNO";
//
// SName
//
resources.ApplyResources(this.SName, "SName");
this.SName.Name = "SName";
//
// Age
//
resources.ApplyResources(this.Age, "Age");
this.Age.Name = "Age";
//
// Address
//
resources.ApplyResources(this.Address, "Address");
this.Address.Name = "Address";
//
// Sex
//
resources.ApplyResources(this.Sex, "Sex");
this.Sex.Name = "Sex";
//
// contextMenuStrip1
//
this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.删除ToolStripMenuItem});
this.contextMenuStrip1.Name = "contextMenuStrip1";
resources.ApplyResources(this.contextMenuStrip1, "contextMenuStrip1");
//
// 删除ToolStripMenuItem
//
this.删除ToolStripMenuItem.Name = "删除ToolStripMenuItem";
resources.ApplyResources(this.删除ToolStripMenuItem, "删除ToolStripMenuItem");
this.删除ToolStripMenuItem.Click += new System.EventHandler(this.删除ToolStripMenuItem_Click);
//
// textBox1
//
resources.ApplyResources(this.textBox1, "textBox1");
this.textBox1.Name = "textBox1";
//
// button1
//
resources.ApplyResources(this.button1, "button1");
this.button1.Name = "button1";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// FormStudent
//
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.button1);
this.Controls.Add(this.textBox1);
this.Controls.Add(this.dgvStudent);
this.Name = "FormStudent";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FormStudent_FormClosing);
this.Load += new System.EventHandler(this.FormStudent_Load);
((System.ComponentModel.ISupportInitialize)(this.dgvStudent)).EndInit();
this.contextMenuStrip1.ResumeLayout(false);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.DataGridView dgvStudent;
private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
private System.Windows.Forms.ToolStripMenuItem 删除ToolStripMenuItem;
private System.Windows.Forms.TextBox textBox1;
private System.Windows.Forms.Button button1;
private System.Windows.Forms.DataGridViewTextBoxColumn SNO;
private System.Windows.Forms.DataGridViewTextBoxColumn SName;
private System.Windows.Forms.DataGridViewTextBoxColumn Age;
private System.Windows.Forms.DataGridViewTextBoxColumn Address;
private System.Windows.Forms.DataGridViewTextBoxColumn Sex;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -