ChatServer.Designer.cs 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  1. namespace SocketChat.Server
  2. {
  3. partial class ChatServer
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.listBoxStatus = new System.Windows.Forms.RichTextBox();
  29. this.label1 = new System.Windows.Forms.Label();
  30. this.comboBoxReceiver = new System.Windows.Forms.ComboBox();
  31. this.buttonSend = new System.Windows.Forms.Button();
  32. this.lblPort = new System.Windows.Forms.Label();
  33. this.txtPort = new System.Windows.Forms.TextBox();
  34. this.txtIP = new System.Windows.Forms.TextBox();
  35. this.lblIP = new System.Windows.Forms.Label();
  36. this.btnStop = new System.Windows.Forms.Button();
  37. this.btnStart = new System.Windows.Forms.Button();
  38. this.txtSendMsg = new System.Windows.Forms.RichTextBox();
  39. this.label2 = new System.Windows.Forms.Label();
  40. this.label3 = new System.Windows.Forms.Label();
  41. this.SuspendLayout();
  42. //
  43. // listBoxStatus
  44. //
  45. this.listBoxStatus.Location = new System.Drawing.Point(11, 26);
  46. this.listBoxStatus.Name = "listBoxStatus";
  47. this.listBoxStatus.Size = new System.Drawing.Size(358, 172);
  48. this.listBoxStatus.TabIndex = 29;
  49. this.listBoxStatus.Text = "";
  50. this.listBoxStatus.WordWrap = false;
  51. //
  52. // label1
  53. //
  54. this.label1.AutoSize = true;
  55. this.label1.Location = new System.Drawing.Point(9, 302);
  56. this.label1.Name = "label1";
  57. this.label1.Size = new System.Drawing.Size(53, 12);
  58. this.label1.TabIndex = 28;
  59. this.label1.Text = "接收方:";
  60. //
  61. // comboBoxReceiver
  62. //
  63. this.comboBoxReceiver.FormattingEnabled = true;
  64. this.comboBoxReceiver.Location = new System.Drawing.Point(62, 299);
  65. this.comboBoxReceiver.Name = "comboBoxReceiver";
  66. this.comboBoxReceiver.Size = new System.Drawing.Size(227, 20);
  67. this.comboBoxReceiver.TabIndex = 27;
  68. //
  69. // buttonSend
  70. //
  71. this.buttonSend.Location = new System.Drawing.Point(295, 298);
  72. this.buttonSend.Name = "buttonSend";
  73. this.buttonSend.Size = new System.Drawing.Size(75, 23);
  74. this.buttonSend.TabIndex = 26;
  75. this.buttonSend.Text = "发送";
  76. this.buttonSend.UseVisualStyleBackColor = true;
  77. this.buttonSend.Click += new System.EventHandler(this.buttonSend_Click);
  78. //
  79. // lblPort
  80. //
  81. this.lblPort.AutoSize = true;
  82. this.lblPort.Location = new System.Drawing.Point(55, 357);
  83. this.lblPort.Name = "lblPort";
  84. this.lblPort.Size = new System.Drawing.Size(35, 12);
  85. this.lblPort.TabIndex = 25;
  86. this.lblPort.Text = "Port:";
  87. //
  88. // txtPort
  89. //
  90. this.txtPort.Location = new System.Drawing.Point(95, 354);
  91. this.txtPort.Name = "txtPort";
  92. this.txtPort.Size = new System.Drawing.Size(100, 21);
  93. this.txtPort.TabIndex = 24;
  94. this.txtPort.Text = "51888";
  95. //
  96. // txtIP
  97. //
  98. this.txtIP.Location = new System.Drawing.Point(95, 327);
  99. this.txtIP.Name = "txtIP";
  100. this.txtIP.Size = new System.Drawing.Size(100, 21);
  101. this.txtIP.TabIndex = 23;
  102. this.txtIP.Text = "127.0.0.1";
  103. //
  104. // lblIP
  105. //
  106. this.lblIP.AutoSize = true;
  107. this.lblIP.Location = new System.Drawing.Point(55, 330);
  108. this.lblIP.Name = "lblIP";
  109. this.lblIP.Size = new System.Drawing.Size(23, 12);
  110. this.lblIP.TabIndex = 22;
  111. this.lblIP.Text = "IP:";
  112. //
  113. // btnStop
  114. //
  115. this.btnStop.Location = new System.Drawing.Point(214, 357);
  116. this.btnStop.Name = "btnStop";
  117. this.btnStop.Size = new System.Drawing.Size(75, 23);
  118. this.btnStop.TabIndex = 21;
  119. this.btnStop.Text = "停止服务";
  120. this.btnStop.UseVisualStyleBackColor = true;
  121. this.btnStop.Click += new System.EventHandler(this.btnStop_Click);
  122. //
  123. // btnStart
  124. //
  125. this.btnStart.Location = new System.Drawing.Point(214, 325);
  126. this.btnStart.Name = "btnStart";
  127. this.btnStart.Size = new System.Drawing.Size(75, 23);
  128. this.btnStart.TabIndex = 20;
  129. this.btnStart.Text = "启动服务";
  130. this.btnStart.UseVisualStyleBackColor = true;
  131. this.btnStart.Click += new System.EventHandler(this.btnStart_Click);
  132. //
  133. // txtSendMsg
  134. //
  135. this.txtSendMsg.Location = new System.Drawing.Point(12, 231);
  136. this.txtSendMsg.Name = "txtSendMsg";
  137. this.txtSendMsg.Size = new System.Drawing.Size(358, 61);
  138. this.txtSendMsg.TabIndex = 30;
  139. this.txtSendMsg.Text = "";
  140. //
  141. // label2
  142. //
  143. this.label2.AutoSize = true;
  144. this.label2.Location = new System.Drawing.Point(9, 213);
  145. this.label2.Name = "label2";
  146. this.label2.Size = new System.Drawing.Size(65, 12);
  147. this.label2.TabIndex = 31;
  148. this.label2.Text = "发送消息:";
  149. //
  150. // label3
  151. //
  152. this.label3.AutoSize = true;
  153. this.label3.Location = new System.Drawing.Point(9, 9);
  154. this.label3.Name = "label3";
  155. this.label3.Size = new System.Drawing.Size(35, 12);
  156. this.label3.TabIndex = 32;
  157. this.label3.Text = "Log:";
  158. //
  159. // ChatServer
  160. //
  161. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  162. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  163. this.ClientSize = new System.Drawing.Size(405, 400);
  164. this.Controls.Add(this.label3);
  165. this.Controls.Add(this.label2);
  166. this.Controls.Add(this.txtSendMsg);
  167. this.Controls.Add(this.listBoxStatus);
  168. this.Controls.Add(this.label1);
  169. this.Controls.Add(this.comboBoxReceiver);
  170. this.Controls.Add(this.buttonSend);
  171. this.Controls.Add(this.lblPort);
  172. this.Controls.Add(this.txtPort);
  173. this.Controls.Add(this.txtIP);
  174. this.Controls.Add(this.lblIP);
  175. this.Controls.Add(this.btnStop);
  176. this.Controls.Add(this.btnStart);
  177. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
  178. this.Name = "ChatServer";
  179. this.Text = "服务器";
  180. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.ChatServer_FormClosing);
  181. this.ResumeLayout(false);
  182. this.PerformLayout();
  183. }
  184. #endregion
  185. private System.Windows.Forms.RichTextBox listBoxStatus;
  186. private System.Windows.Forms.Label label1;
  187. private System.Windows.Forms.ComboBox comboBoxReceiver;
  188. private System.Windows.Forms.Button buttonSend;
  189. private System.Windows.Forms.Label lblPort;
  190. private System.Windows.Forms.TextBox txtPort;
  191. private System.Windows.Forms.TextBox txtIP;
  192. private System.Windows.Forms.Label lblIP;
  193. private System.Windows.Forms.Button btnStop;
  194. private System.Windows.Forms.Button btnStart;
  195. private System.Windows.Forms.RichTextBox txtSendMsg;
  196. private System.Windows.Forms.Label label2;
  197. private System.Windows.Forms.Label label3;
  198. }
  199. }