namespace SocketChat.Server
{
partial class ChatServer
{
///
/// Required designer variable.
///
private System.ComponentModel.IContainer components = null;
///
/// Clean up any resources being used.
///
/// true if managed resources should be disposed; otherwise, false.
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
///
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
///
private void InitializeComponent()
{
this.listBoxStatus = new System.Windows.Forms.RichTextBox();
this.label1 = new System.Windows.Forms.Label();
this.comboBoxReceiver = new System.Windows.Forms.ComboBox();
this.buttonSend = new System.Windows.Forms.Button();
this.lblPort = new System.Windows.Forms.Label();
this.txtPort = new System.Windows.Forms.TextBox();
this.txtIP = new System.Windows.Forms.TextBox();
this.lblIP = new System.Windows.Forms.Label();
this.btnStop = new System.Windows.Forms.Button();
this.btnStart = new System.Windows.Forms.Button();
this.txtSendMsg = new System.Windows.Forms.RichTextBox();
this.label2 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// listBoxStatus
//
this.listBoxStatus.Location = new System.Drawing.Point(11, 26);
this.listBoxStatus.Name = "listBoxStatus";
this.listBoxStatus.Size = new System.Drawing.Size(358, 172);
this.listBoxStatus.TabIndex = 29;
this.listBoxStatus.Text = "";
this.listBoxStatus.WordWrap = false;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(9, 302);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(53, 12);
this.label1.TabIndex = 28;
this.label1.Text = "接收方:";
//
// comboBoxReceiver
//
this.comboBoxReceiver.FormattingEnabled = true;
this.comboBoxReceiver.Location = new System.Drawing.Point(62, 299);
this.comboBoxReceiver.Name = "comboBoxReceiver";
this.comboBoxReceiver.Size = new System.Drawing.Size(227, 20);
this.comboBoxReceiver.TabIndex = 27;
//
// buttonSend
//
this.buttonSend.Location = new System.Drawing.Point(295, 298);
this.buttonSend.Name = "buttonSend";
this.buttonSend.Size = new System.Drawing.Size(75, 23);
this.buttonSend.TabIndex = 26;
this.buttonSend.Text = "发送";
this.buttonSend.UseVisualStyleBackColor = true;
this.buttonSend.Click += new System.EventHandler(this.buttonSend_Click);
//
// lblPort
//
this.lblPort.AutoSize = true;
this.lblPort.Location = new System.Drawing.Point(55, 357);
this.lblPort.Name = "lblPort";
this.lblPort.Size = new System.Drawing.Size(35, 12);
this.lblPort.TabIndex = 25;
this.lblPort.Text = "Port:";
//
// txtPort
//
this.txtPort.Location = new System.Drawing.Point(95, 354);
this.txtPort.Name = "txtPort";
this.txtPort.Size = new System.Drawing.Size(100, 21);
this.txtPort.TabIndex = 24;
this.txtPort.Text = "51888";
//
// txtIP
//
this.txtIP.Location = new System.Drawing.Point(95, 327);
this.txtIP.Name = "txtIP";
this.txtIP.Size = new System.Drawing.Size(100, 21);
this.txtIP.TabIndex = 23;
this.txtIP.Text = "127.0.0.1";
//
// lblIP
//
this.lblIP.AutoSize = true;
this.lblIP.Location = new System.Drawing.Point(55, 330);
this.lblIP.Name = "lblIP";
this.lblIP.Size = new System.Drawing.Size(23, 12);
this.lblIP.TabIndex = 22;
this.lblIP.Text = "IP:";
//
// btnStop
//
this.btnStop.Location = new System.Drawing.Point(214, 357);
this.btnStop.Name = "btnStop";
this.btnStop.Size = new System.Drawing.Size(75, 23);
this.btnStop.TabIndex = 21;
this.btnStop.Text = "停止服务";
this.btnStop.UseVisualStyleBackColor = true;
this.btnStop.Click += new System.EventHandler(this.btnStop_Click);
//
// btnStart
//
this.btnStart.Location = new System.Drawing.Point(214, 325);
this.btnStart.Name = "btnStart";
this.btnStart.Size = new System.Drawing.Size(75, 23);
this.btnStart.TabIndex = 20;
this.btnStart.Text = "启动服务";
this.btnStart.UseVisualStyleBackColor = true;
this.btnStart.Click += new System.EventHandler(this.btnStart_Click);
//
// txtSendMsg
//
this.txtSendMsg.Location = new System.Drawing.Point(12, 231);
this.txtSendMsg.Name = "txtSendMsg";
this.txtSendMsg.Size = new System.Drawing.Size(358, 61);
this.txtSendMsg.TabIndex = 30;
this.txtSendMsg.Text = "";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(9, 213);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(65, 12);
this.label2.TabIndex = 31;
this.label2.Text = "发送消息:";
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(9, 9);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(35, 12);
this.label3.TabIndex = 32;
this.label3.Text = "Log:";
//
// ChatServer
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(405, 400);
this.Controls.Add(this.label3);
this.Controls.Add(this.label2);
this.Controls.Add(this.txtSendMsg);
this.Controls.Add(this.listBoxStatus);
this.Controls.Add(this.label1);
this.Controls.Add(this.comboBoxReceiver);
this.Controls.Add(this.buttonSend);
this.Controls.Add(this.lblPort);
this.Controls.Add(this.txtPort);
this.Controls.Add(this.txtIP);
this.Controls.Add(this.lblIP);
this.Controls.Add(this.btnStop);
this.Controls.Add(this.btnStart);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.Name = "ChatServer";
this.Text = "服务器";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.ChatServer_FormClosing);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.RichTextBox listBoxStatus;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.ComboBox comboBoxReceiver;
private System.Windows.Forms.Button buttonSend;
private System.Windows.Forms.Label lblPort;
private System.Windows.Forms.TextBox txtPort;
private System.Windows.Forms.TextBox txtIP;
private System.Windows.Forms.Label lblIP;
private System.Windows.Forms.Button btnStop;
private System.Windows.Forms.Button btnStart;
private System.Windows.Forms.RichTextBox txtSendMsg;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Label label3;
}
}