📄 frmguanli.designer.cs
字号:
namespace BookManage
{
partial class frmguanli
{
/// <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.lblid = new System.Windows.Forms.Label();
this.lblleixing = new System.Windows.Forms.Label();
this.lblname = new System.Windows.Forms.Label();
this.lblPrice = new System.Windows.Forms.Label();
this.lblfengmian = new System.Windows.Forms.Label();
this.lblleirong = new System.Windows.Forms.Label();
this.txtid = new System.Windows.Forms.TextBox();
this.txtleixing = new System.Windows.Forms.TextBox();
this.txtname = new System.Windows.Forms.TextBox();
this.txtPrice = new System.Windows.Forms.TextBox();
this.txtfengmian = new System.Windows.Forms.TextBox();
this.txtleirong = new System.Windows.Forms.TextBox();
this.btnUpdate = new System.Windows.Forms.Button();
this.btnadd = new System.Windows.Forms.Button();
this.btndelete = new System.Windows.Forms.Button();
this.btnclose = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// lblid
//
this.lblid.AutoSize = true;
this.lblid.Location = new System.Drawing.Point(35, 62);
this.lblid.Name = "lblid";
this.lblid.Size = new System.Drawing.Size(59, 12);
this.lblid.TabIndex = 0;
this.lblid.Text = "图书编号:";
//
// lblleixing
//
this.lblleixing.AutoSize = true;
this.lblleixing.Location = new System.Drawing.Point(35, 104);
this.lblleixing.Name = "lblleixing";
this.lblleixing.Size = new System.Drawing.Size(59, 12);
this.lblleixing.TabIndex = 1;
this.lblleixing.Text = "图书类型:";
//
// lblname
//
this.lblname.AutoSize = true;
this.lblname.Location = new System.Drawing.Point(35, 150);
this.lblname.Name = "lblname";
this.lblname.Size = new System.Drawing.Size(59, 12);
this.lblname.TabIndex = 2;
this.lblname.Text = "图书名字:";
//
// lblPrice
//
this.lblPrice.AutoSize = true;
this.lblPrice.Location = new System.Drawing.Point(262, 62);
this.lblPrice.Name = "lblPrice";
this.lblPrice.Size = new System.Drawing.Size(59, 12);
this.lblPrice.TabIndex = 3;
this.lblPrice.Text = "图书价格:";
//
// lblfengmian
//
this.lblfengmian.AutoSize = true;
this.lblfengmian.Location = new System.Drawing.Point(266, 104);
this.lblfengmian.Name = "lblfengmian";
this.lblfengmian.Size = new System.Drawing.Size(59, 12);
this.lblfengmian.TabIndex = 4;
this.lblfengmian.Text = "图书封面:";
//
// lblleirong
//
this.lblleirong.AutoSize = true;
this.lblleirong.Location = new System.Drawing.Point(268, 150);
this.lblleirong.Name = "lblleirong";
this.lblleirong.Size = new System.Drawing.Size(59, 12);
this.lblleirong.TabIndex = 5;
this.lblleirong.Text = "图书内容:";
//
// txtid
//
this.txtid.Location = new System.Drawing.Point(112, 59);
this.txtid.Name = "txtid";
this.txtid.Size = new System.Drawing.Size(123, 21);
this.txtid.TabIndex = 6;
//
// txtleixing
//
this.txtleixing.Location = new System.Drawing.Point(112, 101);
this.txtleixing.Name = "txtleixing";
this.txtleixing.Size = new System.Drawing.Size(123, 21);
this.txtleixing.TabIndex = 7;
//
// txtname
//
this.txtname.Location = new System.Drawing.Point(112, 147);
this.txtname.Name = "txtname";
this.txtname.Size = new System.Drawing.Size(123, 21);
this.txtname.TabIndex = 8;
//
// txtPrice
//
this.txtPrice.Location = new System.Drawing.Point(333, 59);
this.txtPrice.Name = "txtPrice";
this.txtPrice.Size = new System.Drawing.Size(121, 21);
this.txtPrice.TabIndex = 9;
//
// txtfengmian
//
this.txtfengmian.Location = new System.Drawing.Point(333, 101);
this.txtfengmian.Name = "txtfengmian";
this.txtfengmian.Size = new System.Drawing.Size(121, 21);
this.txtfengmian.TabIndex = 10;
//
// txtleirong
//
this.txtleirong.Location = new System.Drawing.Point(333, 147);
this.txtleirong.Name = "txtleirong";
this.txtleirong.Size = new System.Drawing.Size(121, 21);
this.txtleirong.TabIndex = 11;
//
// btnUpdate
//
this.btnUpdate.Location = new System.Drawing.Point(77, 201);
this.btnUpdate.Name = "btnUpdate";
this.btnUpdate.Size = new System.Drawing.Size(92, 29);
this.btnUpdate.TabIndex = 12;
this.btnUpdate.Text = "更新(&U)";
this.btnUpdate.UseVisualStyleBackColor = true;
this.btnUpdate.Click += new System.EventHandler(this.btnUpdate_Click);
//
// btnadd
//
this.btnadd.Location = new System.Drawing.Point(175, 201);
this.btnadd.Name = "btnadd";
this.btnadd.Size = new System.Drawing.Size(89, 29);
this.btnadd.TabIndex = 13;
this.btnadd.Text = "添加(&A)";
this.btnadd.UseVisualStyleBackColor = true;
this.btnadd.Click += new System.EventHandler(this.btnadd_Click);
//
// btndelete
//
this.btndelete.Location = new System.Drawing.Point(270, 201);
this.btndelete.Name = "btndelete";
this.btndelete.Size = new System.Drawing.Size(88, 29);
this.btndelete.TabIndex = 14;
this.btndelete.Text = "删除(&D)";
this.btndelete.UseVisualStyleBackColor = true;
this.btndelete.Click += new System.EventHandler(this.btndelete_Click);
//
// btnclose
//
this.btnclose.Location = new System.Drawing.Point(364, 201);
this.btnclose.Name = "btnclose";
this.btnclose.Size = new System.Drawing.Size(90, 29);
this.btnclose.TabIndex = 15;
this.btnclose.Text = "关闭(&C)";
this.btnclose.UseVisualStyleBackColor = true;
this.btnclose.Click += new System.EventHandler(this.btnclose_Click);
//
// frmguanli
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(479, 289);
this.Controls.Add(this.btnclose);
this.Controls.Add(this.btndelete);
this.Controls.Add(this.btnadd);
this.Controls.Add(this.btnUpdate);
this.Controls.Add(this.txtleirong);
this.Controls.Add(this.txtfengmian);
this.Controls.Add(this.txtPrice);
this.Controls.Add(this.txtname);
this.Controls.Add(this.txtleixing);
this.Controls.Add(this.txtid);
this.Controls.Add(this.lblleirong);
this.Controls.Add(this.lblfengmian);
this.Controls.Add(this.lblPrice);
this.Controls.Add(this.lblname);
this.Controls.Add(this.lblleixing);
this.Controls.Add(this.lblid);
this.Name = "frmguanli";
this.Text = "学生信息管理";
this.Load += new System.EventHandler(this.frmguanli_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label lblid;
private System.Windows.Forms.Label lblleixing;
private System.Windows.Forms.Label lblname;
private System.Windows.Forms.Label lblPrice;
private System.Windows.Forms.Label lblfengmian;
private System.Windows.Forms.Label lblleirong;
private System.Windows.Forms.TextBox txtid;
private System.Windows.Forms.TextBox txtleixing;
private System.Windows.Forms.TextBox txtname;
private System.Windows.Forms.TextBox txtPrice;
private System.Windows.Forms.TextBox txtfengmian;
private System.Windows.Forms.TextBox txtleirong;
private System.Windows.Forms.Button btnUpdate;
private System.Windows.Forms.Button btnadd;
private System.Windows.Forms.Button btndelete;
private System.Windows.Forms.Button btnclose;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -