Form1.Designer.cs 7.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. namespace DotNettyFrom
  2. {
  3. partial class Form1
  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.listBox1 = new System.Windows.Forms.ListBox();
  29. this.TbHost = new System.Windows.Forms.TextBox();
  30. this.TbPort = new System.Windows.Forms.TextBox();
  31. this.BtnConnection = new System.Windows.Forms.Button();
  32. this.BtnDisConn = new System.Windows.Forms.Button();
  33. this.BtnLogin = new System.Windows.Forms.Button();
  34. this.BtnSendData = new System.Windows.Forms.Button();
  35. this.menuStrip1 = new System.Windows.Forms.MenuStrip();
  36. this.文件FToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  37. this.statusStrip1 = new System.Windows.Forms.StatusStrip();
  38. this.menuStrip1.SuspendLayout();
  39. this.SuspendLayout();
  40. //
  41. // listBox1
  42. //
  43. this.listBox1.FormattingEnabled = true;
  44. this.listBox1.ItemHeight = 12;
  45. this.listBox1.Location = new System.Drawing.Point(12, 60);
  46. this.listBox1.Name = "listBox1";
  47. this.listBox1.Size = new System.Drawing.Size(820, 436);
  48. this.listBox1.TabIndex = 0;
  49. //
  50. // TbHost
  51. //
  52. this.TbHost.Location = new System.Drawing.Point(39, 23);
  53. this.TbHost.Name = "TbHost";
  54. this.TbHost.Size = new System.Drawing.Size(241, 21);
  55. this.TbHost.TabIndex = 1;
  56. this.TbHost.Text = "127.0.0.1";
  57. //
  58. // TbPort
  59. //
  60. this.TbPort.Location = new System.Drawing.Point(286, 23);
  61. this.TbPort.Name = "TbPort";
  62. this.TbPort.Size = new System.Drawing.Size(72, 21);
  63. this.TbPort.TabIndex = 1;
  64. this.TbPort.Text = "4001";
  65. //
  66. // BtnConnection
  67. //
  68. this.BtnConnection.Location = new System.Drawing.Point(364, 23);
  69. this.BtnConnection.Name = "BtnConnection";
  70. this.BtnConnection.Size = new System.Drawing.Size(75, 23);
  71. this.BtnConnection.TabIndex = 2;
  72. this.BtnConnection.Text = "连接";
  73. this.BtnConnection.UseVisualStyleBackColor = true;
  74. this.BtnConnection.Click += new System.EventHandler(this.BtnConnection_Click);
  75. //
  76. // BtnDisConn
  77. //
  78. this.BtnDisConn.Location = new System.Drawing.Point(445, 23);
  79. this.BtnDisConn.Name = "BtnDisConn";
  80. this.BtnDisConn.Size = new System.Drawing.Size(75, 23);
  81. this.BtnDisConn.TabIndex = 2;
  82. this.BtnDisConn.Text = "断开";
  83. this.BtnDisConn.UseVisualStyleBackColor = true;
  84. this.BtnDisConn.Click += new System.EventHandler(this.BtnDisConn_Click);
  85. //
  86. // BtnLogin
  87. //
  88. this.BtnLogin.Location = new System.Drawing.Point(526, 23);
  89. this.BtnLogin.Name = "BtnLogin";
  90. this.BtnLogin.Size = new System.Drawing.Size(75, 23);
  91. this.BtnLogin.TabIndex = 2;
  92. this.BtnLogin.Text = "登录";
  93. this.BtnLogin.UseVisualStyleBackColor = true;
  94. //
  95. // BtnSendData
  96. //
  97. this.BtnSendData.Location = new System.Drawing.Point(607, 23);
  98. this.BtnSendData.Name = "BtnSendData";
  99. this.BtnSendData.Size = new System.Drawing.Size(75, 23);
  100. this.BtnSendData.TabIndex = 2;
  101. this.BtnSendData.Text = "发送数据";
  102. this.BtnSendData.UseVisualStyleBackColor = true;
  103. this.BtnSendData.Click += new System.EventHandler(this.BtnSendData_Click);
  104. //
  105. // menuStrip1
  106. //
  107. this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  108. this.文件FToolStripMenuItem});
  109. this.menuStrip1.Location = new System.Drawing.Point(0, 0);
  110. this.menuStrip1.Name = "menuStrip1";
  111. this.menuStrip1.Size = new System.Drawing.Size(844, 25);
  112. this.menuStrip1.TabIndex = 3;
  113. this.menuStrip1.Text = "menuStrip1";
  114. //
  115. // 文件FToolStripMenuItem
  116. //
  117. this.文件FToolStripMenuItem.Name = "文件FToolStripMenuItem";
  118. this.文件FToolStripMenuItem.Size = new System.Drawing.Size(58, 21);
  119. this.文件FToolStripMenuItem.Text = "文件(&F)";
  120. //
  121. // statusStrip1
  122. //
  123. this.statusStrip1.Location = new System.Drawing.Point(0, 508);
  124. this.statusStrip1.Name = "statusStrip1";
  125. this.statusStrip1.Size = new System.Drawing.Size(844, 22);
  126. this.statusStrip1.TabIndex = 4;
  127. this.statusStrip1.Text = "statusStrip1";
  128. //
  129. // Form1
  130. //
  131. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  132. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  133. this.ClientSize = new System.Drawing.Size(844, 530);
  134. this.Controls.Add(this.statusStrip1);
  135. this.Controls.Add(this.BtnDisConn);
  136. this.Controls.Add(this.BtnSendData);
  137. this.Controls.Add(this.BtnLogin);
  138. this.Controls.Add(this.BtnConnection);
  139. this.Controls.Add(this.TbPort);
  140. this.Controls.Add(this.TbHost);
  141. this.Controls.Add(this.listBox1);
  142. this.Controls.Add(this.menuStrip1);
  143. this.MainMenuStrip = this.menuStrip1;
  144. this.Name = "Form1";
  145. this.Text = "Form1";
  146. this.Load += new System.EventHandler(this.Form1_Load);
  147. this.menuStrip1.ResumeLayout(false);
  148. this.menuStrip1.PerformLayout();
  149. this.ResumeLayout(false);
  150. this.PerformLayout();
  151. }
  152. #endregion
  153. private System.Windows.Forms.ListBox listBox1;
  154. private System.Windows.Forms.TextBox TbHost;
  155. private System.Windows.Forms.TextBox TbPort;
  156. private System.Windows.Forms.Button BtnConnection;
  157. private System.Windows.Forms.Button BtnDisConn;
  158. private System.Windows.Forms.Button BtnLogin;
  159. private System.Windows.Forms.Button BtnSendData;
  160. private System.Windows.Forms.MenuStrip menuStrip1;
  161. private System.Windows.Forms.ToolStripMenuItem 文件FToolStripMenuItem;
  162. private System.Windows.Forms.StatusStrip statusStrip1;
  163. }
  164. }