📄 mainform.designer.cs
字号:
namespace Contact
{
partial class MainForm
{
/// <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.groupBox1 = new System.Windows.Forms.GroupBox();
this.listView = new System.Windows.Forms.ListView();
this.fName = new System.Windows.Forms.ColumnHeader();
this.fPhone = new System.Windows.Forms.ColumnHeader();
this.fAddress = new System.Windows.Forms.ColumnHeader();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.groupBox4 = new System.Windows.Forms.GroupBox();
this.btnAbout = new System.Windows.Forms.Button();
this.btnDel = new System.Windows.Forms.Button();
this.btnEdit = new System.Windows.Forms.Button();
this.btnAdd = new System.Windows.Forms.Button();
this.groupBox3 = new System.Windows.Forms.GroupBox();
this.btnRE = new System.Windows.Forms.Button();
this.btnOK = new System.Windows.Forms.Button();
this.txtAddress = new System.Windows.Forms.TextBox();
this.txtPhone = new System.Windows.Forms.TextBox();
this.label3 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.txtName = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
this.fContactID = new System.Windows.Forms.ColumnHeader();
this.groupBox1.SuspendLayout();
this.groupBox2.SuspendLayout();
this.groupBox4.SuspendLayout();
this.groupBox3.SuspendLayout();
this.SuspendLayout();
//
// groupBox1
//
this.groupBox1.Controls.Add(this.listView);
this.groupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
this.groupBox1.Location = new System.Drawing.Point(0, 0);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(470, 342);
this.groupBox1.TabIndex = 2;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "联系人列表:";
//
// listView
//
this.listView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.fContactID,
this.fName,
this.fPhone,
this.fAddress});
this.listView.Dock = System.Windows.Forms.DockStyle.Fill;
this.listView.FullRowSelect = true;
this.listView.GridLines = true;
this.listView.Location = new System.Drawing.Point(3, 17);
this.listView.Name = "listView";
this.listView.Size = new System.Drawing.Size(464, 322);
this.listView.TabIndex = 0;
this.listView.UseCompatibleStateImageBehavior = false;
this.listView.View = System.Windows.Forms.View.Details;
//
// fName
//
this.fName.Text = "姓名";
this.fName.Width = 100;
//
// fPhone
//
this.fPhone.Text = "电话";
this.fPhone.Width = 100;
//
// fAddress
//
this.fAddress.Text = "联系地址";
this.fAddress.Width = 200;
//
// groupBox2
//
this.groupBox2.Controls.Add(this.groupBox4);
this.groupBox2.Controls.Add(this.groupBox3);
this.groupBox2.Dock = System.Windows.Forms.DockStyle.Bottom;
this.groupBox2.Location = new System.Drawing.Point(0, 182);
this.groupBox2.Name = "groupBox2";
this.groupBox2.Size = new System.Drawing.Size(470, 160);
this.groupBox2.TabIndex = 3;
this.groupBox2.TabStop = false;
//
// groupBox4
//
this.groupBox4.Controls.Add(this.btnAbout);
this.groupBox4.Controls.Add(this.btnDel);
this.groupBox4.Controls.Add(this.btnEdit);
this.groupBox4.Controls.Add(this.btnAdd);
this.groupBox4.Location = new System.Drawing.Point(288, 8);
this.groupBox4.Name = "groupBox4";
this.groupBox4.Size = new System.Drawing.Size(176, 144);
this.groupBox4.TabIndex = 1;
this.groupBox4.TabStop = false;
this.groupBox4.Text = "操作面板";
//
// btnAbout
//
this.btnAbout.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
this.btnAbout.Location = new System.Drawing.Point(8, 112);
this.btnAbout.Name = "btnAbout";
this.btnAbout.Size = new System.Drawing.Size(160, 24);
this.btnAbout.TabIndex = 3;
this.btnAbout.Text = "关于本软件";
this.btnAbout.Click += new System.EventHandler(this.btnAbout_Click);
//
// btnDel
//
this.btnDel.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
this.btnDel.Location = new System.Drawing.Point(8, 80);
this.btnDel.Name = "btnDel";
this.btnDel.Size = new System.Drawing.Size(160, 24);
this.btnDel.TabIndex = 2;
this.btnDel.Text = "删除选中练习人信息";
this.btnDel.Click += new System.EventHandler(this.btnDel_Click);
//
// btnEdit
//
this.btnEdit.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
this.btnEdit.Location = new System.Drawing.Point(8, 48);
this.btnEdit.Name = "btnEdit";
this.btnEdit.Size = new System.Drawing.Size(160, 24);
this.btnEdit.TabIndex = 1;
this.btnEdit.Text = "修改选中联系人信息";
this.btnEdit.Click += new System.EventHandler(this.btnEdit_Click);
//
// btnAdd
//
this.btnAdd.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
this.btnAdd.Location = new System.Drawing.Point(8, 16);
this.btnAdd.Name = "btnAdd";
this.btnAdd.Size = new System.Drawing.Size(160, 24);
this.btnAdd.TabIndex = 0;
this.btnAdd.Text = "添加联系人信息";
this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
//
// groupBox3
//
this.groupBox3.Controls.Add(this.btnRE);
this.groupBox3.Controls.Add(this.btnOK);
this.groupBox3.Controls.Add(this.txtAddress);
this.groupBox3.Controls.Add(this.txtPhone);
this.groupBox3.Controls.Add(this.label3);
this.groupBox3.Controls.Add(this.label2);
this.groupBox3.Controls.Add(this.txtName);
this.groupBox3.Controls.Add(this.label1);
this.groupBox3.Location = new System.Drawing.Point(8, 8);
this.groupBox3.Name = "groupBox3";
this.groupBox3.Size = new System.Drawing.Size(272, 144);
this.groupBox3.TabIndex = 0;
this.groupBox3.TabStop = false;
this.groupBox3.Text = "信息窗口";
//
// btnRE
//
this.btnRE.Enabled = false;
this.btnRE.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
this.btnRE.Location = new System.Drawing.Point(192, 48);
this.btnRE.Name = "btnRE";
this.btnRE.Size = new System.Drawing.Size(72, 24);
this.btnRE.TabIndex = 7;
this.btnRE.Text = "取消";
this.btnRE.Click += new System.EventHandler(this.btnRE_Click);
//
// btnOK
//
this.btnOK.Enabled = false;
this.btnOK.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
this.btnOK.Location = new System.Drawing.Point(192, 17);
this.btnOK.Name = "btnOK";
this.btnOK.Size = new System.Drawing.Size(72, 24);
this.btnOK.TabIndex = 6;
this.btnOK.Text = "确定";
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
//
// txtAddress
//
this.txtAddress.Enabled = false;
this.txtAddress.Location = new System.Drawing.Point(48, 80);
this.txtAddress.Multiline = true;
this.txtAddress.Name = "txtAddress";
this.txtAddress.Size = new System.Drawing.Size(216, 56);
this.txtAddress.TabIndex = 5;
//
// txtPhone
//
this.txtPhone.Enabled = false;
this.txtPhone.Location = new System.Drawing.Point(48, 48);
this.txtPhone.Name = "txtPhone";
this.txtPhone.Size = new System.Drawing.Size(136, 21);
this.txtPhone.TabIndex = 4;
//
// label3
//
this.label3.Location = new System.Drawing.Point(8, 80);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(56, 16);
this.label3.TabIndex = 3;
this.label3.Text = "地址:";
//
// label2
//
this.label2.Location = new System.Drawing.Point(8, 48);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(48, 16);
this.label2.TabIndex = 2;
this.label2.Text = "电话:";
//
// txtName
//
this.txtName.Enabled = false;
this.txtName.Location = new System.Drawing.Point(48, 16);
this.txtName.Name = "txtName";
this.txtName.Size = new System.Drawing.Size(136, 21);
this.txtName.TabIndex = 1;
//
// label1
//
this.label1.Location = new System.Drawing.Point(8, 24);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(48, 16);
this.label1.TabIndex = 0;
this.label1.Text = "姓名:";
//
// fContactID
//
this.fContactID.Text = "编号";
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(470, 342);
this.Controls.Add(this.groupBox2);
this.Controls.Add(this.groupBox1);
this.Name = "MainForm";
this.Text = "个人通讯录";
this.Load += new System.EventHandler(this.MainForm_Load);
this.groupBox1.ResumeLayout(false);
this.groupBox2.ResumeLayout(false);
this.groupBox4.ResumeLayout(false);
this.groupBox3.ResumeLayout(false);
this.groupBox3.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.ListView listView;
private System.Windows.Forms.ColumnHeader fName;
private System.Windows.Forms.ColumnHeader fPhone;
private System.Windows.Forms.ColumnHeader fAddress;
private System.Windows.Forms.GroupBox groupBox2;
private System.Windows.Forms.GroupBox groupBox4;
private System.Windows.Forms.Button btnAbout;
private System.Windows.Forms.Button btnDel;
private System.Windows.Forms.Button btnEdit;
private System.Windows.Forms.Button btnAdd;
private System.Windows.Forms.GroupBox groupBox3;
private System.Windows.Forms.Button btnRE;
private System.Windows.Forms.Button btnOK;
private System.Windows.Forms.TextBox txtAddress;
private System.Windows.Forms.TextBox txtPhone;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.TextBox txtName;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.ColumnHeader fContactID;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -