FrmServerTest.Designer.cs 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. namespace PCLCommunication
  2. {
  3. partial class FrmServerTest
  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.txtServerPort = new System.Windows.Forms.TextBox();
  29. this.label1 = new System.Windows.Forms.Label();
  30. this.btnStop = new System.Windows.Forms.Button();
  31. this.btnStart = new System.Windows.Forms.Button();
  32. this.textBox1 = new System.Windows.Forms.TextBox();
  33. this.panel1 = new System.Windows.Forms.Panel();
  34. this.lbls = new System.Windows.Forms.Label();
  35. this.panel1.SuspendLayout();
  36. this.SuspendLayout();
  37. //
  38. // txtServerPort
  39. //
  40. this.txtServerPort.Location = new System.Drawing.Point(64, 4);
  41. this.txtServerPort.Name = "txtServerPort";
  42. this.txtServerPort.Size = new System.Drawing.Size(100, 21);
  43. this.txtServerPort.TabIndex = 11;
  44. this.txtServerPort.Text = "5000";
  45. //
  46. // label1
  47. //
  48. this.label1.AutoSize = true;
  49. this.label1.Location = new System.Drawing.Point(4, 6);
  50. this.label1.Name = "label1";
  51. this.label1.Size = new System.Drawing.Size(53, 12);
  52. this.label1.TabIndex = 10;
  53. this.label1.Text = "服务端口";
  54. //
  55. // btnStop
  56. //
  57. this.btnStop.Location = new System.Drawing.Point(251, 4);
  58. this.btnStop.Name = "btnStop";
  59. this.btnStop.Size = new System.Drawing.Size(75, 23);
  60. this.btnStop.TabIndex = 8;
  61. this.btnStop.Text = "停止服务";
  62. this.btnStop.UseVisualStyleBackColor = true;
  63. this.btnStop.Click += new System.EventHandler(this.btnStop_Click);
  64. //
  65. // btnStart
  66. //
  67. this.btnStart.Location = new System.Drawing.Point(170, 3);
  68. this.btnStart.Name = "btnStart";
  69. this.btnStart.Size = new System.Drawing.Size(75, 23);
  70. this.btnStart.TabIndex = 9;
  71. this.btnStart.Text = "启动服务";
  72. this.btnStart.UseVisualStyleBackColor = true;
  73. this.btnStart.Click += new System.EventHandler(this.btnStart_Click);
  74. //
  75. // textBox1
  76. //
  77. this.textBox1.Dock = System.Windows.Forms.DockStyle.Fill;
  78. this.textBox1.Location = new System.Drawing.Point(0, 40);
  79. this.textBox1.Multiline = true;
  80. this.textBox1.Name = "textBox1";
  81. this.textBox1.ScrollBars = System.Windows.Forms.ScrollBars.Both;
  82. this.textBox1.Size = new System.Drawing.Size(418, 264);
  83. this.textBox1.TabIndex = 12;
  84. //
  85. // panel1
  86. //
  87. this.panel1.Controls.Add(this.lbls);
  88. this.panel1.Controls.Add(this.btnStart);
  89. this.panel1.Controls.Add(this.btnStop);
  90. this.panel1.Controls.Add(this.txtServerPort);
  91. this.panel1.Controls.Add(this.label1);
  92. this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
  93. this.panel1.Location = new System.Drawing.Point(0, 0);
  94. this.panel1.Name = "panel1";
  95. this.panel1.Size = new System.Drawing.Size(418, 40);
  96. this.panel1.TabIndex = 13;
  97. //
  98. // lbls
  99. //
  100. this.lbls.AutoSize = true;
  101. this.lbls.Location = new System.Drawing.Point(333, 12);
  102. this.lbls.Name = "lbls";
  103. this.lbls.Size = new System.Drawing.Size(29, 12);
  104. this.lbls.TabIndex = 12;
  105. this.lbls.Text = "停止";
  106. //
  107. // FrmServerTest
  108. //
  109. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  110. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  111. this.ClientSize = new System.Drawing.Size(418, 304);
  112. this.Controls.Add(this.textBox1);
  113. this.Controls.Add(this.panel1);
  114. this.Name = "FrmServerTest";
  115. this.Text = "FrmServerTest";
  116. this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.FrmServerTest_FormClosed);
  117. this.panel1.ResumeLayout(false);
  118. this.panel1.PerformLayout();
  119. this.ResumeLayout(false);
  120. this.PerformLayout();
  121. }
  122. #endregion
  123. private System.Windows.Forms.TextBox txtServerPort;
  124. private System.Windows.Forms.Label label1;
  125. private System.Windows.Forms.Button btnStop;
  126. private System.Windows.Forms.Button btnStart;
  127. private System.Windows.Forms.TextBox textBox1;
  128. private System.Windows.Forms.Panel panel1;
  129. private System.Windows.Forms.Label lbls;
  130. }
  131. }