Form1.Designer.cs 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. namespace socketTest
  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.button1 = new System.Windows.Forms.Button();
  29. this.richTextBox1 = new System.Windows.Forms.RichTextBox();
  30. this.label1 = new System.Windows.Forms.Label();
  31. this.label2 = new System.Windows.Forms.Label();
  32. this.richTextBox2 = new System.Windows.Forms.RichTextBox();
  33. this.button2 = new System.Windows.Forms.Button();
  34. this.SuspendLayout();
  35. //
  36. // button1
  37. //
  38. this.button1.Location = new System.Drawing.Point(288, 168);
  39. this.button1.Name = "button1";
  40. this.button1.Size = new System.Drawing.Size(75, 23);
  41. this.button1.TabIndex = 0;
  42. this.button1.Text = "连接";
  43. this.button1.UseVisualStyleBackColor = true;
  44. this.button1.Click += new System.EventHandler(this.button1_Click);
  45. //
  46. // richTextBox1
  47. //
  48. this.richTextBox1.Location = new System.Drawing.Point(12, 29);
  49. this.richTextBox1.Name = "richTextBox1";
  50. this.richTextBox1.Size = new System.Drawing.Size(268, 81);
  51. this.richTextBox1.TabIndex = 1;
  52. this.richTextBox1.Text = "";
  53. //
  54. // label1
  55. //
  56. this.label1.AutoSize = true;
  57. this.label1.Location = new System.Drawing.Point(13, 11);
  58. this.label1.Name = "label1";
  59. this.label1.Size = new System.Drawing.Size(29, 12);
  60. this.label1.TabIndex = 2;
  61. this.label1.Text = "发送";
  62. //
  63. // label2
  64. //
  65. this.label2.AutoSize = true;
  66. this.label2.Location = new System.Drawing.Point(12, 117);
  67. this.label2.Name = "label2";
  68. this.label2.Size = new System.Drawing.Size(29, 12);
  69. this.label2.TabIndex = 3;
  70. this.label2.Text = "接收";
  71. //
  72. // richTextBox2
  73. //
  74. this.richTextBox2.Location = new System.Drawing.Point(13, 133);
  75. this.richTextBox2.Name = "richTextBox2";
  76. this.richTextBox2.Size = new System.Drawing.Size(267, 86);
  77. this.richTextBox2.TabIndex = 4;
  78. this.richTextBox2.Text = "";
  79. //
  80. // button2
  81. //
  82. this.button2.Location = new System.Drawing.Point(287, 49);
  83. this.button2.Name = "button2";
  84. this.button2.Size = new System.Drawing.Size(75, 23);
  85. this.button2.TabIndex = 5;
  86. this.button2.Text = "发送";
  87. this.button2.UseVisualStyleBackColor = true;
  88. this.button2.Click += new System.EventHandler(this.button2_Click);
  89. //
  90. // Form1
  91. //
  92. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  93. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  94. this.ClientSize = new System.Drawing.Size(375, 234);
  95. this.Controls.Add(this.button2);
  96. this.Controls.Add(this.richTextBox2);
  97. this.Controls.Add(this.label2);
  98. this.Controls.Add(this.label1);
  99. this.Controls.Add(this.richTextBox1);
  100. this.Controls.Add(this.button1);
  101. this.Name = "Form1";
  102. this.Text = "Form1";
  103. this.ResumeLayout(false);
  104. this.PerformLayout();
  105. }
  106. #endregion
  107. private System.Windows.Forms.Button button1;
  108. private System.Windows.Forms.RichTextBox richTextBox1;
  109. private System.Windows.Forms.Label label1;
  110. private System.Windows.Forms.Label label2;
  111. private System.Windows.Forms.RichTextBox richTextBox2;
  112. private System.Windows.Forms.Button button2;
  113. }
  114. }