Guest User

Untitled

a guest
Jul 19th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.88 KB | None | 0 0
  1. namespace O
  2. {
  3. partial class Server
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9.  
  10. /// <summary>
  11. /// Clean up any resources being used.
  12. /// </summary>
  13. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  14. protected override void Dispose(bool disposing)
  15. {
  16. if (disposing && (components != null))
  17. {
  18. components.Dispose();
  19. }
  20. base.Dispose(disposing);
  21. }
  22.  
  23. #region Windows Form Designer generated code
  24.  
  25. /// <summary>
  26. /// Required method for Designer support - do not modify
  27. /// the contents of this method with the code editor.
  28. /// </summary>
  29. private void InitializeComponent()
  30. {
  31. this.but_return = new System.Windows.Forms.Button();
  32. this.lbl_port = new System.Windows.Forms.Label();
  33. this.box_port = new System.Windows.Forms.TextBox();
  34. this.tbServerIP = new System.Windows.Forms.TextBox();
  35. this.lblIP = new System.Windows.Forms.Label();
  36. this.btnListen = new System.Windows.Forms.Button();
  37. this.box_console = new System.Windows.Forms.TextBox();
  38. this.btn_stop = new System.Windows.Forms.Button();
  39. this.SuspendLayout();
  40. //
  41. // but_return
  42. //
  43. this.but_return.Location = new System.Drawing.Point(205, 231);
  44. this.but_return.Name = "but_return";
  45. this.but_return.Size = new System.Drawing.Size(75, 23);
  46. this.but_return.TabIndex = 3;
  47. this.but_return.Text = "Return";
  48. this.but_return.UseVisualStyleBackColor = true;
  49. this.but_return.Click += new System.EventHandler(this.but_return_Click);
  50. //
  51. // lbl_port
  52. //
  53. this.lbl_port.AutoSize = true;
  54. this.lbl_port.Location = new System.Drawing.Point(244, 9);
  55. this.lbl_port.Name = "lbl_port";
  56. this.lbl_port.Size = new System.Drawing.Size(36, 13);
  57. this.lbl_port.TabIndex = 4;
  58. this.lbl_port.Text = "Port #";
  59. //
  60. // box_port
  61. //
  62. this.box_port.Location = new System.Drawing.Point(237, 25);
  63. this.box_port.Name = "box_port";
  64. this.box_port.ReadOnly = true;
  65. this.box_port.Size = new System.Drawing.Size(43, 20);
  66. this.box_port.TabIndex = 5;
  67. //
  68. // tbServerIP
  69. //
  70. this.tbServerIP.Location = new System.Drawing.Point(12, 25);
  71. this.tbServerIP.Name = "tbServerIP";
  72. this.tbServerIP.ReadOnly = true;
  73. this.tbServerIP.Size = new System.Drawing.Size(219, 20);
  74. this.tbServerIP.TabIndex = 6;
  75. //
  76. // lblIP
  77. //
  78. this.lblIP.AutoSize = true;
  79. this.lblIP.Location = new System.Drawing.Point(12, 9);
  80. this.lblIP.Name = "lblIP";
  81. this.lblIP.Size = new System.Drawing.Size(58, 13);
  82. this.lblIP.TabIndex = 7;
  83. this.lblIP.Text = "IP Address";
  84. //
  85. // btnListen
  86. //
  87. this.btnListen.Location = new System.Drawing.Point(124, 231);
  88. this.btnListen.Name = "btnListen";
  89. this.btnListen.Size = new System.Drawing.Size(75, 23);
  90. this.btnListen.TabIndex = 8;
  91. this.btnListen.Text = "listen";
  92. this.btnListen.UseVisualStyleBackColor = true;
  93. this.btnListen.Click += new System.EventHandler(this.btnListen_Click);
  94. //
  95. // box_console
  96. //
  97. this.box_console.Location = new System.Drawing.Point(12, 51);
  98. this.box_console.Multiline = true;
  99. this.box_console.Name = "box_console";
  100. this.box_console.Size = new System.Drawing.Size(268, 174);
  101. this.box_console.TabIndex = 9;
  102. //
  103. // btn_stop
  104. //
  105. this.btn_stop.Enabled = false;
  106. this.btn_stop.Location = new System.Drawing.Point(43, 231);
  107. this.btn_stop.Name = "btn_stop";
  108. this.btn_stop.Size = new System.Drawing.Size(75, 23);
  109. this.btn_stop.TabIndex = 10;
  110. this.btn_stop.Text = "Stop";
  111. this.btn_stop.UseVisualStyleBackColor = true;
  112. this.btn_stop.Click += new System.EventHandler(this.btn_stop_Click);
  113. //
  114. // Server
  115. //
  116. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  117. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  118. this.ClientSize = new System.Drawing.Size(292, 266);
  119. this.Controls.Add(this.btn_stop);
  120. this.Controls.Add(this.box_console);
  121. this.Controls.Add(this.btnListen);
  122. this.Controls.Add(this.lblIP);
  123. this.Controls.Add(this.tbServerIP);
  124. this.Controls.Add(this.box_port);
  125. this.Controls.Add(this.lbl_port);
  126. this.Controls.Add(this.but_return);
  127. this.Name = "Server";
  128. this.Text = "Server";
  129. this.ResumeLayout(false);
  130. this.PerformLayout();
  131.  
  132. }
  133.  
  134. #endregion
  135.  
  136. private System.Windows.Forms.Button but_return;
  137. private System.Windows.Forms.Label lbl_port;
  138. private System.Windows.Forms.TextBox box_port;
  139. private System.Windows.Forms.TextBox tbServerIP;
  140. private System.Windows.Forms.Label lblIP;
  141. private System.Windows.Forms.Button btnListen;
  142. private System.Windows.Forms.TextBox box_console;
  143. private System.Windows.Forms.Button btn_stop;
  144. }
  145. }
Add Comment
Please, Sign In to add comment