frmClient.Designer.cs 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291
  1. namespace TcpClient_PFM
  2. {
  3. partial class frmClient
  4. {
  5. /// <summary>
  6. /// 必需的设计器变量。
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// 清理所有正在使用的资源。
  11. /// </summary>
  12. /// <param name="disposing">如果应释放托管资源,为 true;否则为 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 窗体设计器生成的代码
  22. /// <summary>
  23. /// 设计器支持所需的方法 - 不要
  24. /// 使用代码编辑器修改此方法的内容。
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.label1 = new System.Windows.Forms.Label();
  29. this.label2 = new System.Windows.Forms.Label();
  30. this.cbxTestTime = new System.Windows.Forms.ComboBox();
  31. this.cbxTestInterv = new System.Windows.Forms.ComboBox();
  32. this.cbxThreadInterv = new System.Windows.Forms.ComboBox();
  33. this.cbxThreadCount = new System.Windows.Forms.ComboBox();
  34. this.label3 = new System.Windows.Forms.Label();
  35. this.label4 = new System.Windows.Forms.Label();
  36. this.cbxDataLength = new System.Windows.Forms.ComboBox();
  37. this.label5 = new System.Windows.Forms.Label();
  38. this.label6 = new System.Windows.Forms.Label();
  39. this.lbxMsg = new System.Windows.Forms.ListBox();
  40. this.txtPort = new System.Windows.Forms.TextBox();
  41. this.txtIpAddress = new System.Windows.Forms.TextBox();
  42. this.btnStop = new System.Windows.Forms.Button();
  43. this.btnStart = new System.Windows.Forms.Button();
  44. this.SuspendLayout();
  45. //
  46. // label1
  47. //
  48. this.label1.AutoSize = true;
  49. this.label1.Location = new System.Drawing.Point(25, 15);
  50. this.label1.Name = "label1";
  51. this.label1.Size = new System.Drawing.Size(71, 12);
  52. this.label1.TabIndex = 0;
  53. this.label1.Text = "Test Times:";
  54. //
  55. // label2
  56. //
  57. this.label2.AutoSize = true;
  58. this.label2.Location = new System.Drawing.Point(19, 41);
  59. this.label2.Name = "label2";
  60. this.label2.Size = new System.Drawing.Size(77, 12);
  61. this.label2.TabIndex = 1;
  62. this.label2.Text = "Test Interv:";
  63. //
  64. // cbxTestTime
  65. //
  66. this.cbxTestTime.FormattingEnabled = true;
  67. this.cbxTestTime.Items.AddRange(new object[] {
  68. "1",
  69. "5",
  70. "10",
  71. "30",
  72. "50",
  73. "100",
  74. "300",
  75. "500",
  76. "1000"});
  77. this.cbxTestTime.Location = new System.Drawing.Point(101, 11);
  78. this.cbxTestTime.Name = "cbxTestTime";
  79. this.cbxTestTime.Size = new System.Drawing.Size(82, 20);
  80. this.cbxTestTime.TabIndex = 2;
  81. //
  82. // cbxTestInterv
  83. //
  84. this.cbxTestInterv.FormattingEnabled = true;
  85. this.cbxTestInterv.Items.AddRange(new object[] {
  86. "0",
  87. "1",
  88. "3",
  89. "5",
  90. "10",
  91. "20",
  92. "30",
  93. "60",
  94. "100"});
  95. this.cbxTestInterv.Location = new System.Drawing.Point(101, 38);
  96. this.cbxTestInterv.Name = "cbxTestInterv";
  97. this.cbxTestInterv.Size = new System.Drawing.Size(82, 20);
  98. this.cbxTestInterv.TabIndex = 3;
  99. //
  100. // cbxThreadInterv
  101. //
  102. this.cbxThreadInterv.FormattingEnabled = true;
  103. this.cbxThreadInterv.Items.AddRange(new object[] {
  104. "0",
  105. "1",
  106. "3",
  107. "5",
  108. "10",
  109. "20",
  110. "30",
  111. "60",
  112. "100"});
  113. this.cbxThreadInterv.Location = new System.Drawing.Point(303, 38);
  114. this.cbxThreadInterv.Name = "cbxThreadInterv";
  115. this.cbxThreadInterv.Size = new System.Drawing.Size(82, 20);
  116. this.cbxThreadInterv.TabIndex = 7;
  117. //
  118. // cbxThreadCount
  119. //
  120. this.cbxThreadCount.FormattingEnabled = true;
  121. this.cbxThreadCount.Items.AddRange(new object[] {
  122. "1",
  123. "5",
  124. "10",
  125. "30",
  126. "50",
  127. "100",
  128. "300",
  129. "500",
  130. "1000"});
  131. this.cbxThreadCount.Location = new System.Drawing.Point(303, 11);
  132. this.cbxThreadCount.Name = "cbxThreadCount";
  133. this.cbxThreadCount.Size = new System.Drawing.Size(82, 20);
  134. this.cbxThreadCount.TabIndex = 6;
  135. //
  136. // label3
  137. //
  138. this.label3.AutoSize = true;
  139. this.label3.Location = new System.Drawing.Point(209, 41);
  140. this.label3.Name = "label3";
  141. this.label3.Size = new System.Drawing.Size(89, 12);
  142. this.label3.TabIndex = 5;
  143. this.label3.Text = "Thread Interv:";
  144. //
  145. // label4
  146. //
  147. this.label4.AutoSize = true;
  148. this.label4.Location = new System.Drawing.Point(215, 15);
  149. this.label4.Name = "label4";
  150. this.label4.Size = new System.Drawing.Size(83, 12);
  151. this.label4.TabIndex = 4;
  152. this.label4.Text = "Thread Count:";
  153. //
  154. // cbxDataLength
  155. //
  156. this.cbxDataLength.FormattingEnabled = true;
  157. this.cbxDataLength.Items.AddRange(new object[] {
  158. "1",
  159. "10",
  160. "100",
  161. "1000",
  162. "3000",
  163. "5000",
  164. "10000"});
  165. this.cbxDataLength.Location = new System.Drawing.Point(500, 11);
  166. this.cbxDataLength.Name = "cbxDataLength";
  167. this.cbxDataLength.Size = new System.Drawing.Size(82, 20);
  168. this.cbxDataLength.TabIndex = 9;
  169. //
  170. // label5
  171. //
  172. this.label5.AutoSize = true;
  173. this.label5.Location = new System.Drawing.Point(418, 15);
  174. this.label5.Name = "label5";
  175. this.label5.Size = new System.Drawing.Size(77, 12);
  176. this.label5.TabIndex = 8;
  177. this.label5.Text = "Data Length:";
  178. //
  179. // label6
  180. //
  181. this.label6.AutoSize = true;
  182. this.label6.Location = new System.Drawing.Point(399, 41);
  183. this.label6.Name = "label6";
  184. this.label6.Size = new System.Drawing.Size(191, 12);
  185. this.label6.TabIndex = 10;
  186. this.label6.Text = "\'Interv\' is to slow down speed ";
  187. //
  188. // lbxMsg
  189. //
  190. this.lbxMsg.FormattingEnabled = true;
  191. this.lbxMsg.ItemHeight = 12;
  192. this.lbxMsg.Location = new System.Drawing.Point(21, 67);
  193. this.lbxMsg.Name = "lbxMsg";
  194. this.lbxMsg.Size = new System.Drawing.Size(561, 352);
  195. this.lbxMsg.TabIndex = 11;
  196. this.lbxMsg.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.lbxMsg_KeyPress);
  197. //
  198. // txtPort
  199. //
  200. this.txtPort.Location = new System.Drawing.Point(331, 430);
  201. this.txtPort.Name = "txtPort";
  202. this.txtPort.Size = new System.Drawing.Size(40, 21);
  203. this.txtPort.TabIndex = 16;
  204. this.txtPort.Text = "5555";
  205. //
  206. // txtIpAddress
  207. //
  208. this.txtIpAddress.Location = new System.Drawing.Point(227, 430);
  209. this.txtIpAddress.Name = "txtIpAddress";
  210. this.txtIpAddress.Size = new System.Drawing.Size(98, 21);
  211. this.txtIpAddress.TabIndex = 15;
  212. this.txtIpAddress.Text = "127.0.0.1";
  213. //
  214. // btnStop
  215. //
  216. this.btnStop.Anchor = System.Windows.Forms.AnchorStyles.Top;
  217. this.btnStop.Location = new System.Drawing.Point(476, 426);
  218. this.btnStop.Name = "btnStop";
  219. this.btnStop.Size = new System.Drawing.Size(106, 26);
  220. this.btnStop.TabIndex = 14;
  221. this.btnStop.Text = "Stop && Check";
  222. this.btnStop.UseVisualStyleBackColor = true;
  223. this.btnStop.Click += new System.EventHandler(this.btnStop_Click);
  224. //
  225. // btnStart
  226. //
  227. this.btnStart.Anchor = System.Windows.Forms.AnchorStyles.Top;
  228. this.btnStart.Location = new System.Drawing.Point(397, 426);
  229. this.btnStart.Name = "btnStart";
  230. this.btnStart.Size = new System.Drawing.Size(73, 26);
  231. this.btnStart.TabIndex = 13;
  232. this.btnStart.Text = "Start";
  233. this.btnStart.UseVisualStyleBackColor = true;
  234. this.btnStart.Click += new System.EventHandler(this.btnStart_Click);
  235. //
  236. // frmClient
  237. //
  238. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  239. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  240. this.ClientSize = new System.Drawing.Size(600, 458);
  241. this.Controls.Add(this.txtPort);
  242. this.Controls.Add(this.txtIpAddress);
  243. this.Controls.Add(this.btnStop);
  244. this.Controls.Add(this.btnStart);
  245. this.Controls.Add(this.lbxMsg);
  246. this.Controls.Add(this.label6);
  247. this.Controls.Add(this.cbxDataLength);
  248. this.Controls.Add(this.label5);
  249. this.Controls.Add(this.cbxThreadInterv);
  250. this.Controls.Add(this.cbxThreadCount);
  251. this.Controls.Add(this.label3);
  252. this.Controls.Add(this.label4);
  253. this.Controls.Add(this.cbxTestInterv);
  254. this.Controls.Add(this.cbxTestTime);
  255. this.Controls.Add(this.label2);
  256. this.Controls.Add(this.label1);
  257. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
  258. this.Name = "frmClient";
  259. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  260. this.Text = "Echo-PFM Client [ \'C\' - clear list box ]";
  261. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmClient_FormClosing);
  262. this.Load += new System.EventHandler(this.frmClient_Load);
  263. this.ResumeLayout(false);
  264. this.PerformLayout();
  265. }
  266. #endregion
  267. private System.Windows.Forms.Label label1;
  268. private System.Windows.Forms.Label label2;
  269. private System.Windows.Forms.ComboBox cbxTestTime;
  270. private System.Windows.Forms.ComboBox cbxTestInterv;
  271. private System.Windows.Forms.ComboBox cbxThreadInterv;
  272. private System.Windows.Forms.ComboBox cbxThreadCount;
  273. private System.Windows.Forms.Label label3;
  274. private System.Windows.Forms.Label label4;
  275. private System.Windows.Forms.ComboBox cbxDataLength;
  276. private System.Windows.Forms.Label label5;
  277. private System.Windows.Forms.Label label6;
  278. private System.Windows.Forms.ListBox lbxMsg;
  279. private System.Windows.Forms.TextBox txtPort;
  280. private System.Windows.Forms.TextBox txtIpAddress;
  281. private System.Windows.Forms.Button btnStop;
  282. private System.Windows.Forms.Button btnStart;
  283. }
  284. }