ConSocket.Designer.cs 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. namespace FileToMD5
  2. {
  3. partial class ConSocket
  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.label1 = new System.Windows.Forms.Label();
  29. this.label2 = new System.Windows.Forms.Label();
  30. this.txtip = new System.Windows.Forms.TextBox();
  31. this.txtport = new System.Windows.Forms.TextBox();
  32. this.button1 = new System.Windows.Forms.Button();
  33. this.lblend = new System.Windows.Forms.Label();
  34. this.btnclose = new System.Windows.Forms.Button();
  35. this.SuspendLayout();
  36. //
  37. // label1
  38. //
  39. this.label1.AutoSize = true;
  40. this.label1.Location = new System.Drawing.Point(54, 28);
  41. this.label1.Name = "label1";
  42. this.label1.Size = new System.Drawing.Size(77, 12);
  43. this.label1.TabIndex = 0;
  44. this.label1.Text = "服务器IP地址";
  45. //
  46. // label2
  47. //
  48. this.label2.AutoSize = true;
  49. this.label2.Location = new System.Drawing.Point(54, 111);
  50. this.label2.Name = "label2";
  51. this.label2.Size = new System.Drawing.Size(41, 12);
  52. this.label2.TabIndex = 1;
  53. this.label2.Text = "端口号";
  54. //
  55. // txtip
  56. //
  57. this.txtip.Location = new System.Drawing.Point(56, 64);
  58. this.txtip.Name = "txtip";
  59. this.txtip.Size = new System.Drawing.Size(254, 21);
  60. this.txtip.TabIndex = 2;
  61. this.txtip.Text = "10.71.26.56";
  62. //
  63. // txtport
  64. //
  65. this.txtport.Location = new System.Drawing.Point(56, 139);
  66. this.txtport.Name = "txtport";
  67. this.txtport.Size = new System.Drawing.Size(155, 21);
  68. this.txtport.TabIndex = 3;
  69. this.txtport.Text = "5888";
  70. //
  71. // button1
  72. //
  73. this.button1.Location = new System.Drawing.Point(56, 206);
  74. this.button1.Name = "button1";
  75. this.button1.Size = new System.Drawing.Size(75, 23);
  76. this.button1.TabIndex = 4;
  77. this.button1.Text = "连接";
  78. this.button1.UseVisualStyleBackColor = true;
  79. this.button1.Click += new System.EventHandler(this.button1_Click);
  80. //
  81. // lblend
  82. //
  83. this.lblend.AutoSize = true;
  84. this.lblend.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  85. this.lblend.ForeColor = System.Drawing.Color.OrangeRed;
  86. this.lblend.Location = new System.Drawing.Point(54, 255);
  87. this.lblend.Name = "lblend";
  88. this.lblend.Size = new System.Drawing.Size(0, 28);
  89. this.lblend.TabIndex = 5;
  90. //
  91. // btnclose
  92. //
  93. this.btnclose.Location = new System.Drawing.Point(235, 206);
  94. this.btnclose.Name = "btnclose";
  95. this.btnclose.Size = new System.Drawing.Size(75, 23);
  96. this.btnclose.TabIndex = 6;
  97. this.btnclose.Text = "关闭";
  98. this.btnclose.UseVisualStyleBackColor = true;
  99. this.btnclose.Click += new System.EventHandler(this.btnclose_Click);
  100. //
  101. // ConSocket
  102. //
  103. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  104. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  105. this.ClientSize = new System.Drawing.Size(379, 342);
  106. this.Controls.Add(this.btnclose);
  107. this.Controls.Add(this.lblend);
  108. this.Controls.Add(this.button1);
  109. this.Controls.Add(this.txtport);
  110. this.Controls.Add(this.txtip);
  111. this.Controls.Add(this.label2);
  112. this.Controls.Add(this.label1);
  113. this.Name = "ConSocket";
  114. this.Text = "ConSocket";
  115. this.ResumeLayout(false);
  116. this.PerformLayout();
  117. }
  118. #endregion
  119. private System.Windows.Forms.Label label1;
  120. private System.Windows.Forms.Label label2;
  121. private System.Windows.Forms.TextBox txtip;
  122. private System.Windows.Forms.TextBox txtport;
  123. private System.Windows.Forms.Button button1;
  124. private System.Windows.Forms.Label lblend;
  125. private System.Windows.Forms.Button btnclose;
  126. }
  127. }