www.pudn.com > P2Pprogram.rar > Form1.Designer.cs
namespace UDPp2pserver
{
partial class ServerForm
{
///
/// 必需的设计器变量。
///
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.rtbmsg = new System.Windows.Forms.RichTextBox();
this.start = new System.Windows.Forms.Button();
this.button2 = new System.Windows.Forms.Button();
this.tbonline = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// rtbmsg
//
this.rtbmsg.Location = new System.Drawing.Point(38, 32);
this.rtbmsg.Name = "rtbmsg";
this.rtbmsg.Size = new System.Drawing.Size(259, 250);
this.rtbmsg.TabIndex = 0;
this.rtbmsg.Text = "";
//
// start
//
this.start.Location = new System.Drawing.Point(49, 288);
this.start.Name = "start";
this.start.Size = new System.Drawing.Size(75, 23);
this.start.TabIndex = 1;
this.start.Text = "开启";
this.start.UseVisualStyleBackColor = true;
this.start.Click += new System.EventHandler(this.start_Click);
//
// button2
//
this.button2.Location = new System.Drawing.Point(206, 288);
this.button2.Name = "button2";
this.button2.Size = new System.Drawing.Size(75, 23);
this.button2.TabIndex = 2;
this.button2.Text = "退出";
this.button2.UseVisualStyleBackColor = true;
this.button2.Click += new System.EventHandler(this.button2_Click);
//
// tbonline
//
this.tbonline.Location = new System.Drawing.Point(150, 6);
this.tbonline.Name = "tbonline";
this.tbonline.ReadOnly = true;
this.tbonline.Size = new System.Drawing.Size(100, 21);
this.tbonline.TabIndex = 3;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(85, 9);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(59, 12);
this.label1.TabIndex = 4;
this.label1.Text = "在线人数:";
//
// ServerForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(334, 323);
this.Controls.Add(this.label1);
this.Controls.Add(this.tbonline);
this.Controls.Add(this.button2);
this.Controls.Add(this.start);
this.Controls.Add(this.rtbmsg);
this.Name = "ServerForm";
this.Text = "CentralServer";
this.Load += new System.EventHandler(this.ServerForm_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.RichTextBox rtbmsg;
private System.Windows.Forms.Button start;
private System.Windows.Forms.Button button2;
private System.Windows.Forms.TextBox tbonline;
private System.Windows.Forms.Label label1;
}
}