📄 form5.designer.cs
字号:
namespace task
{
partial class Form5
{
/// <summary>
/// 必需的设计器变量。
/// </summary>
private System.ComponentModel.IContainer components = null;
private System.Windows.Forms.MainMenu mainMenu1;
/// <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.Windows.Forms.Label sexLabel;
System.Windows.Forms.Label phoneLabel;
System.Windows.Forms.Label qQLabel;
System.Windows.Forms.Label emailLabel;
System.Windows.Forms.Label addressLabel;
System.Windows.Forms.Label nOLabel;
System.Windows.Forms.Label nameLabel;
this.mainMenu1 = new System.Windows.Forms.MainMenu();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.databaseDataSet = new task.DatabaseDataSet();
this.linkBindingSource = new System.Windows.Forms.BindingSource(this.components);
this.linkTableAdapter = new task.DatabaseDataSetTableAdapters.LinkTableAdapter();
this.sexTextBox = new System.Windows.Forms.TextBox();
this.phoneTextBox = new System.Windows.Forms.TextBox();
this.qQTextBox = new System.Windows.Forms.TextBox();
this.emailTextBox = new System.Windows.Forms.TextBox();
this.addressTextBox = new System.Windows.Forms.TextBox();
this.button1 = new System.Windows.Forms.Button();
this.button2 = new System.Windows.Forms.Button();
sexLabel = new System.Windows.Forms.Label();
phoneLabel = new System.Windows.Forms.Label();
qQLabel = new System.Windows.Forms.Label();
emailLabel = new System.Windows.Forms.Label();
addressLabel = new System.Windows.Forms.Label();
nOLabel = new System.Windows.Forms.Label();
nameLabel = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// label1
//
this.label1.BackColor = System.Drawing.SystemColors.Highlight;
this.label1.ForeColor = System.Drawing.Color.Red;
this.label1.Location = new System.Drawing.Point(92, 19);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(100, 20);
this.label1.Text = "label1";
//
// label2
//
this.label2.BackColor = System.Drawing.SystemColors.Highlight;
this.label2.ForeColor = System.Drawing.Color.Red;
this.label2.Location = new System.Drawing.Point(92, 50);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(100, 20);
this.label2.Text = "label2";
//
// databaseDataSet
//
this.databaseDataSet.DataSetName = "DatabaseDataSet";
this.databaseDataSet.Prefix = "";
this.databaseDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
//
// linkBindingSource
//
this.linkBindingSource.DataMember = "Link";
this.linkBindingSource.DataSource = this.databaseDataSet;
//
// linkTableAdapter
//
this.linkTableAdapter.ClearBeforeFill = true;
//
// sexLabel
//
sexLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
sexLabel.Location = new System.Drawing.Point(54, 87);
sexLabel.Name = "sexLabel";
sexLabel.Size = new System.Drawing.Size(31, 14);
sexLabel.Text = "sex:";
//
// sexTextBox
//
this.sexTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.linkBindingSource, "sex", true));
this.sexTextBox.Location = new System.Drawing.Point(92, 84);
this.sexTextBox.Name = "sexTextBox";
this.sexTextBox.Size = new System.Drawing.Size(100, 21);
this.sexTextBox.TabIndex = 3;
//
// phoneLabel
//
phoneLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
phoneLabel.Location = new System.Drawing.Point(35, 114);
phoneLabel.Name = "phoneLabel";
phoneLabel.Size = new System.Drawing.Size(50, 14);
phoneLabel.Text = "Phone:";
//
// phoneTextBox
//
this.phoneTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.linkBindingSource, "Phone", true));
this.phoneTextBox.Location = new System.Drawing.Point(92, 111);
this.phoneTextBox.Name = "phoneTextBox";
this.phoneTextBox.Size = new System.Drawing.Size(100, 21);
this.phoneTextBox.TabIndex = 5;
//
// qQLabel
//
qQLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
qQLabel.Location = new System.Drawing.Point(56, 141);
qQLabel.Name = "qQLabel";
qQLabel.Size = new System.Drawing.Size(29, 14);
qQLabel.Text = "QQ:";
//
// qQTextBox
//
this.qQTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.linkBindingSource, "QQ", true));
this.qQTextBox.Location = new System.Drawing.Point(92, 138);
this.qQTextBox.Name = "qQTextBox";
this.qQTextBox.Size = new System.Drawing.Size(100, 21);
this.qQTextBox.TabIndex = 7;
//
// emailLabel
//
emailLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
emailLabel.Location = new System.Drawing.Point(43, 168);
emailLabel.Name = "emailLabel";
emailLabel.Size = new System.Drawing.Size(42, 14);
emailLabel.Text = "email:";
//
// emailTextBox
//
this.emailTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.linkBindingSource, "email", true));
this.emailTextBox.Location = new System.Drawing.Point(92, 165);
this.emailTextBox.Name = "emailTextBox";
this.emailTextBox.Size = new System.Drawing.Size(100, 21);
this.emailTextBox.TabIndex = 9;
//
// addressLabel
//
addressLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
addressLabel.Location = new System.Drawing.Point(27, 195);
addressLabel.Name = "addressLabel";
addressLabel.Size = new System.Drawing.Size(58, 14);
addressLabel.Text = "address:";
//
// addressTextBox
//
this.addressTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.linkBindingSource, "address", true));
this.addressTextBox.Location = new System.Drawing.Point(92, 192);
this.addressTextBox.Name = "addressTextBox";
this.addressTextBox.Size = new System.Drawing.Size(100, 21);
this.addressTextBox.TabIndex = 11;
//
// nOLabel
//
nOLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
nOLabel.Location = new System.Drawing.Point(54, 23);
nOLabel.Name = "nOLabel";
nOLabel.Size = new System.Drawing.Size(28, 14);
nOLabel.Text = "NO:";
//
// nameLabel
//
nameLabel.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
nameLabel.Location = new System.Drawing.Point(40, 53);
nameLabel.Name = "nameLabel";
nameLabel.Size = new System.Drawing.Size(50, 17);
nameLabel.Text = "Name:";
//
// button1
//
this.button1.Location = new System.Drawing.Point(35, 232);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(72, 20);
this.button1.TabIndex = 14;
this.button1.Text = "确定";
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// button2
//
this.button2.Location = new System.Drawing.Point(146, 232);
this.button2.Name = "button2";
this.button2.Size = new System.Drawing.Size(72, 20);
this.button2.TabIndex = 15;
this.button2.Text = "返回";
this.button2.Click += new System.EventHandler(this.button2_Click);
//
// Form5
//
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.AutoScroll = true;
this.ClientSize = new System.Drawing.Size(240, 268);
this.Controls.Add(this.button2);
this.Controls.Add(this.button1);
this.Controls.Add(nameLabel);
this.Controls.Add(nOLabel);
this.Controls.Add(addressLabel);
this.Controls.Add(this.addressTextBox);
this.Controls.Add(emailLabel);
this.Controls.Add(this.emailTextBox);
this.Controls.Add(qQLabel);
this.Controls.Add(this.qQTextBox);
this.Controls.Add(phoneLabel);
this.Controls.Add(this.phoneTextBox);
this.Controls.Add(sexLabel);
this.Controls.Add(this.sexTextBox);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Menu = this.mainMenu1;
this.Name = "Form5";
this.Text = "Form5";
this.Load += new System.EventHandler(this.Form5_Load);
this.ResumeLayout(false);
}
#endregion
public System.Windows.Forms.Label label1;
public System.Windows.Forms.Label label2;
private DatabaseDataSet databaseDataSet;
private System.Windows.Forms.BindingSource linkBindingSource;
private task.DatabaseDataSetTableAdapters.LinkTableAdapter linkTableAdapter;
private System.Windows.Forms.TextBox sexTextBox;
private System.Windows.Forms.TextBox phoneTextBox;
private System.Windows.Forms.TextBox qQTextBox;
private System.Windows.Forms.TextBox emailTextBox;
private System.Windows.Forms.TextBox addressTextBox;
private System.Windows.Forms.Button button1;
private System.Windows.Forms.Button button2;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -