teacherinfolistform.designer.cs
来自「一个不错的文档」· CS 代码 · 共 122 行
CS
122 行
namespace MySchoolPrj
{
partial class TeacherInfoListForm
{
/// <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(TeacherInfoListForm));
this.btnExit = new System.Windows.Forms.Button();
this.btnDel = new System.Windows.Forms.Button();
this.btnUpdate = new System.Windows.Forms.Button();
this.btnAdd = new System.Windows.Forms.Button();
this.dgvTeacher = new System.Windows.Forms.DataGridView();
((System.ComponentModel.ISupportInitialize)(this.dgvTeacher)).BeginInit();
this.SuspendLayout();
//
// btnExit
//
this.btnExit.Location = new System.Drawing.Point(373, 270);
this.btnExit.Name = "btnExit";
this.btnExit.Size = new System.Drawing.Size(75, 23);
this.btnExit.TabIndex = 5;
this.btnExit.Text = "退出";
this.btnExit.UseVisualStyleBackColor = true;
this.btnExit.Click += new System.EventHandler(this.btnExit_Click);
//
// btnDel
//
this.btnDel.Location = new System.Drawing.Point(256, 270);
this.btnDel.Name = "btnDel";
this.btnDel.Size = new System.Drawing.Size(75, 23);
this.btnDel.TabIndex = 6;
this.btnDel.Text = "删除";
this.btnDel.UseVisualStyleBackColor = true;
this.btnDel.Click += new System.EventHandler(this.btnDel_Click);
//
// btnUpdate
//
this.btnUpdate.Location = new System.Drawing.Point(139, 270);
this.btnUpdate.Name = "btnUpdate";
this.btnUpdate.Size = new System.Drawing.Size(75, 23);
this.btnUpdate.TabIndex = 7;
this.btnUpdate.Text = "修改";
this.btnUpdate.UseVisualStyleBackColor = true;
this.btnUpdate.Click += new System.EventHandler(this.btnUpdate_Click);
//
// btnAdd
//
this.btnAdd.Location = new System.Drawing.Point(29, 270);
this.btnAdd.Name = "btnAdd";
this.btnAdd.Size = new System.Drawing.Size(75, 23);
this.btnAdd.TabIndex = 4;
this.btnAdd.Text = "新增";
this.btnAdd.UseVisualStyleBackColor = true;
this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
//
// dgvTeacher
//
this.dgvTeacher.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dgvTeacher.Location = new System.Drawing.Point(1, 3);
this.dgvTeacher.Name = "dgvTeacher";
this.dgvTeacher.RowTemplate.Height = 23;
this.dgvTeacher.Size = new System.Drawing.Size(483, 248);
this.dgvTeacher.TabIndex = 0;
//
// TeacherInfoListForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
this.ClientSize = new System.Drawing.Size(486, 300);
this.Controls.Add(this.dgvTeacher);
this.Controls.Add(this.btnExit);
this.Controls.Add(this.btnDel);
this.Controls.Add(this.btnUpdate);
this.Controls.Add(this.btnAdd);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.Name = "TeacherInfoListForm";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "教师信息列表";
this.Load += new System.EventHandler(this.TeacherInfoListForm_Load);
((System.ComponentModel.ISupportInitialize)(this.dgvTeacher)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Button btnExit;
private System.Windows.Forms.Button btnDel;
private System.Windows.Forms.Button btnUpdate;
private System.Windows.Forms.Button btnAdd;
private System.Windows.Forms.DataGridView dgvTeacher;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?