Login.Designer.cs 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. namespace SocketChat.Client
  2. {
  3. partial class Login
  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.lblPort = new System.Windows.Forms.Label();
  29. this.txtPort = new System.Windows.Forms.TextBox();
  30. this.btnLogin = new System.Windows.Forms.Button();
  31. this.txtIP = new System.Windows.Forms.TextBox();
  32. this.txtLoginName = new System.Windows.Forms.TextBox();
  33. this.lblIP = new System.Windows.Forms.Label();
  34. this.lblLoginName = new System.Windows.Forms.Label();
  35. this.SuspendLayout();
  36. //
  37. // lblPort
  38. //
  39. this.lblPort.AutoSize = true;
  40. this.lblPort.Location = new System.Drawing.Point(43, 69);
  41. this.lblPort.Name = "lblPort";
  42. this.lblPort.Size = new System.Drawing.Size(35, 12);
  43. this.lblPort.TabIndex = 13;
  44. this.lblPort.Text = "Port:";
  45. //
  46. // txtPort
  47. //
  48. this.txtPort.Location = new System.Drawing.Point(77, 66);
  49. this.txtPort.Name = "txtPort";
  50. this.txtPort.Size = new System.Drawing.Size(100, 21);
  51. this.txtPort.TabIndex = 12;
  52. this.txtPort.Text = "51888";
  53. //
  54. // btnLogin
  55. //
  56. this.btnLogin.Location = new System.Drawing.Point(102, 93);
  57. this.btnLogin.Name = "btnLogin";
  58. this.btnLogin.Size = new System.Drawing.Size(75, 23);
  59. this.btnLogin.TabIndex = 11;
  60. this.btnLogin.Text = "登录";
  61. this.btnLogin.UseVisualStyleBackColor = true;
  62. this.btnLogin.Click += new System.EventHandler(this.btnLogin_Click);
  63. //
  64. // txtIP
  65. //
  66. this.txtIP.Location = new System.Drawing.Point(77, 39);
  67. this.txtIP.Name = "txtIP";
  68. this.txtIP.Size = new System.Drawing.Size(100, 21);
  69. this.txtIP.TabIndex = 10;
  70. this.txtIP.Text = "127.0.0.1";
  71. //
  72. // txtLoginName
  73. //
  74. this.txtLoginName.Location = new System.Drawing.Point(77, 12);
  75. this.txtLoginName.Name = "txtLoginName";
  76. this.txtLoginName.Size = new System.Drawing.Size(100, 21);
  77. this.txtLoginName.TabIndex = 9;
  78. //
  79. // lblIP
  80. //
  81. this.lblIP.AutoSize = true;
  82. this.lblIP.Location = new System.Drawing.Point(43, 42);
  83. this.lblIP.Name = "lblIP";
  84. this.lblIP.Size = new System.Drawing.Size(23, 12);
  85. this.lblIP.TabIndex = 8;
  86. this.lblIP.Text = "IP:";
  87. //
  88. // lblLoginName
  89. //
  90. this.lblLoginName.AutoSize = true;
  91. this.lblLoginName.Location = new System.Drawing.Point(19, 12);
  92. this.lblLoginName.Name = "lblLoginName";
  93. this.lblLoginName.Size = new System.Drawing.Size(47, 12);
  94. this.lblLoginName.TabIndex = 7;
  95. this.lblLoginName.Text = "登录名:";
  96. //
  97. // Login
  98. //
  99. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  100. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  101. this.ClientSize = new System.Drawing.Size(202, 128);
  102. this.Controls.Add(this.lblPort);
  103. this.Controls.Add(this.txtPort);
  104. this.Controls.Add(this.btnLogin);
  105. this.Controls.Add(this.txtIP);
  106. this.Controls.Add(this.txtLoginName);
  107. this.Controls.Add(this.lblIP);
  108. this.Controls.Add(this.lblLoginName);
  109. this.Name = "Login";
  110. this.Text = "登录";
  111. this.ResumeLayout(false);
  112. this.PerformLayout();
  113. }
  114. #endregion
  115. private System.Windows.Forms.Label lblPort;
  116. private System.Windows.Forms.TextBox txtPort;
  117. private System.Windows.Forms.Button btnLogin;
  118. private System.Windows.Forms.TextBox txtIP;
  119. private System.Windows.Forms.TextBox txtLoginName;
  120. private System.Windows.Forms.Label lblIP;
  121. private System.Windows.Forms.Label lblLoginName;
  122. }
  123. }