www.pudn.com > P2Pprogram.rar > Form1.Designer.cs
namespace UDPp2pclient
{
partial class clientform
{
///
/// 必需的设计器变量。
///
private System.ComponentModel.IContainer components = null;
///
/// 清理所有正在使用的资源。
///
/// 如果应释放托管资源,为 true;否则为 false。
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows 窗体设计器生成的代码
///
/// 设计器支持所需的方法 - 不要
/// 使用代码编辑器修改此方法的内容。
///
private void InitializeComponent()
{
this.btnreq = new System.Windows.Forms.Button();
this.btnexit = new System.Windows.Forms.Button();
this.rtbmsg = new System.Windows.Forms.RichTextBox();
this.keymsg = new System.Windows.Forms.TextBox();
this.tbport = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.tbserverIP = new System.Windows.Forms.TextBox();
this.label4 = new System.Windows.Forms.Label();
this.tbsentence = new System.Windows.Forms.TextBox();
this.supportkey = new System.Windows.Forms.TextBox();
this.ListViewKeys = new System.Windows.Forms.ListView();
this.columnHeader1 = new System.Windows.Forms.ColumnHeader();
this.columnHeader2 = new System.Windows.Forms.ColumnHeader();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.groupBox1.SuspendLayout();
this.groupBox2.SuspendLayout();
this.SuspendLayout();
//
// btnreq
//
this.btnreq.Location = new System.Drawing.Point(92, 386);
this.btnreq.Name = "btnreq";
this.btnreq.Size = new System.Drawing.Size(75, 23);
this.btnreq.TabIndex = 0;
this.btnreq.Text = "请求";
this.btnreq.UseVisualStyleBackColor = true;
this.btnreq.Click += new System.EventHandler(this.btnreq_Click);
//
// btnexit
//
this.btnexit.Location = new System.Drawing.Point(272, 386);
this.btnexit.Name = "btnexit";
this.btnexit.Size = new System.Drawing.Size(75, 23);
this.btnexit.TabIndex = 1;
this.btnexit.Text = "断开连接";
this.btnexit.UseVisualStyleBackColor = true;
this.btnexit.Click += new System.EventHandler(this.btnexit_Click);
//
// rtbmsg
//
this.rtbmsg.Location = new System.Drawing.Point(6, 20);
this.rtbmsg.Name = "rtbmsg";
this.rtbmsg.Size = new System.Drawing.Size(270, 141);
this.rtbmsg.TabIndex = 2;
this.rtbmsg.Text = "";
//
// keymsg
//
this.keymsg.Location = new System.Drawing.Point(302, 98);
this.keymsg.Name = "keymsg";
this.keymsg.Size = new System.Drawing.Size(138, 21);
this.keymsg.TabIndex = 3;
//
// tbport
//
this.tbport.Location = new System.Drawing.Point(302, 49);
this.tbport.Name = "tbport";
this.tbport.Size = new System.Drawing.Size(138, 21);
this.tbport.TabIndex = 4;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(300, 29);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(113, 12);
this.label1.TabIndex = 5;
this.label1.Text = "本机监听的端口号:";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(300, 83);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(89, 12);
this.label2.TabIndex = 6;
this.label2.Text = "请求的关键字:";
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(305, 131);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(119, 12);
this.label3.TabIndex = 7;
this.label3.Text = "要请求的服务器IP:";
//
// tbserverIP
//
this.tbserverIP.Location = new System.Drawing.Point(302, 146);
this.tbserverIP.Name = "tbserverIP";
this.tbserverIP.Size = new System.Drawing.Size(138, 21);
this.tbserverIP.TabIndex = 8;
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(7, 17);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(209, 12);
this.label4.TabIndex = 9;
this.label4.Text = "随机提供的关键字和其所代表的句子:";
//
// tbsentence
//
this.tbsentence.Location = new System.Drawing.Point(126, 32);
this.tbsentence.Name = "tbsentence";
this.tbsentence.Size = new System.Drawing.Size(286, 21);
this.tbsentence.TabIndex = 10;
//
// supportkey
//
this.supportkey.Location = new System.Drawing.Point(9, 32);
this.supportkey.Name = "supportkey";
this.supportkey.Size = new System.Drawing.Size(100, 21);
this.supportkey.TabIndex = 12;
//
// ListViewKeys
//
this.ListViewKeys.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.ListViewKeys.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.columnHeader1,
this.columnHeader2});
this.ListViewKeys.GridLines = true;
this.ListViewKeys.Location = new System.Drawing.Point(11, 59);
this.ListViewKeys.Name = "ListViewKeys";
this.ListViewKeys.Size = new System.Drawing.Size(401, 121);
this.ListViewKeys.TabIndex = 13;
this.ListViewKeys.UseCompatibleStateImageBehavior = false;
this.ListViewKeys.View = System.Windows.Forms.View.Details;
//
// columnHeader1
//
this.columnHeader1.Text = "Key";
//
// columnHeader2
//
this.columnHeader2.Text = "Sentence";
this.columnHeader2.Width = 320;
//
// groupBox1
//
this.groupBox1.Controls.Add(this.rtbmsg);
this.groupBox1.Location = new System.Drawing.Point(12, 12);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(282, 167);
this.groupBox1.TabIndex = 14;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "信息显示窗";
//
// groupBox2
//
this.groupBox2.Controls.Add(this.ListViewKeys);
this.groupBox2.Controls.Add(this.label4);
this.groupBox2.Controls.Add(this.tbsentence);
this.groupBox2.Controls.Add(this.supportkey);
this.groupBox2.Location = new System.Drawing.Point(12, 194);
this.groupBox2.Name = "groupBox2";
this.groupBox2.Size = new System.Drawing.Size(428, 186);
this.groupBox2.TabIndex = 15;
this.groupBox2.TabStop = false;
this.groupBox2.Text = "本机资源和提供给其它用户的资源";
//
// clientform
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(447, 415);
this.Controls.Add(this.groupBox2);
this.Controls.Add(this.groupBox1);
this.Controls.Add(this.tbserverIP);
this.Controls.Add(this.label3);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Controls.Add(this.tbport);
this.Controls.Add(this.keymsg);
this.Controls.Add(this.btnexit);
this.Controls.Add(this.btnreq);
this.Name = "clientform";
this.Text = "Client";
this.groupBox1.ResumeLayout(false);
this.groupBox2.ResumeLayout(false);
this.groupBox2.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button btnreq;
private System.Windows.Forms.Button btnexit;
private System.Windows.Forms.RichTextBox rtbmsg;
private System.Windows.Forms.TextBox keymsg;
private System.Windows.Forms.TextBox tbport;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.TextBox tbserverIP;
private System.Windows.Forms.Label label4;
private System.Windows.Forms.TextBox tbsentence;
private System.Windows.Forms.TextBox supportkey;
private System.Windows.Forms.ListView ListViewKeys;
private System.Windows.Forms.ColumnHeader columnHeader1;
private System.Windows.Forms.ColumnHeader columnHeader2;
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.GroupBox groupBox2;
}
}