Login.Designer.cs 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. namespace UAS_AutoPass
  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.UserName = new System.Windows.Forms.TextBox();
  29. this.UserName_lable = new System.Windows.Forms.Label();
  30. this.PassWord = new System.Windows.Forms.TextBox();
  31. this.PassWord_label = new System.Windows.Forms.Label();
  32. this.Source = new System.Windows.Forms.TextBox();
  33. this.Source_label = new System.Windows.Forms.Label();
  34. this.CheckLogin = new System.Windows.Forms.Button();
  35. this.SuspendLayout();
  36. //
  37. // UserName
  38. //
  39. this.UserName.Location = new System.Drawing.Point(206, 53);
  40. this.UserName.Name = "UserName";
  41. this.UserName.Size = new System.Drawing.Size(163, 25);
  42. this.UserName.TabIndex = 5;
  43. //
  44. // UserName_lable
  45. //
  46. this.UserName_lable.AutoSize = true;
  47. this.UserName_lable.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  48. this.UserName_lable.Location = new System.Drawing.Point(122, 51);
  49. this.UserName_lable.Name = "UserName_lable";
  50. this.UserName_lable.Size = new System.Drawing.Size(72, 27);
  51. this.UserName_lable.TabIndex = 4;
  52. this.UserName_lable.Text = "用户名";
  53. //
  54. // PassWord
  55. //
  56. this.PassWord.Location = new System.Drawing.Point(206, 110);
  57. this.PassWord.Name = "PassWord";
  58. this.PassWord.PasswordChar = '*';
  59. this.PassWord.Size = new System.Drawing.Size(163, 25);
  60. this.PassWord.TabIndex = 7;
  61. //
  62. // PassWord_label
  63. //
  64. this.PassWord_label.AutoSize = true;
  65. this.PassWord_label.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  66. this.PassWord_label.Location = new System.Drawing.Point(122, 108);
  67. this.PassWord_label.Name = "PassWord_label";
  68. this.PassWord_label.Size = new System.Drawing.Size(52, 27);
  69. this.PassWord_label.TabIndex = 6;
  70. this.PassWord_label.Text = "密码";
  71. //
  72. // Source
  73. //
  74. this.Source.Location = new System.Drawing.Point(206, 169);
  75. this.Source.Name = "Source";
  76. this.Source.Size = new System.Drawing.Size(163, 25);
  77. this.Source.TabIndex = 9;
  78. //
  79. // Source_label
  80. //
  81. this.Source_label.AutoSize = true;
  82. this.Source_label.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  83. this.Source_label.Location = new System.Drawing.Point(122, 169);
  84. this.Source_label.Name = "Source_label";
  85. this.Source_label.Size = new System.Drawing.Size(52, 27);
  86. this.Source_label.TabIndex = 8;
  87. this.Source_label.Text = "资源";
  88. //
  89. // CheckLogin
  90. //
  91. this.CheckLogin.Location = new System.Drawing.Point(220, 224);
  92. this.CheckLogin.Name = "CheckLogin";
  93. this.CheckLogin.Size = new System.Drawing.Size(75, 30);
  94. this.CheckLogin.TabIndex = 10;
  95. this.CheckLogin.Text = "登陆";
  96. this.CheckLogin.UseVisualStyleBackColor = true;
  97. this.CheckLogin.Click += new System.EventHandler(this.CheckLogin_Click);
  98. //
  99. // Login
  100. //
  101. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
  102. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  103. this.ClientSize = new System.Drawing.Size(508, 286);
  104. this.Controls.Add(this.CheckLogin);
  105. this.Controls.Add(this.Source);
  106. this.Controls.Add(this.Source_label);
  107. this.Controls.Add(this.PassWord);
  108. this.Controls.Add(this.PassWord_label);
  109. this.Controls.Add(this.UserName);
  110. this.Controls.Add(this.UserName_lable);
  111. this.Name = "Login";
  112. this.Text = "Login";
  113. this.ResumeLayout(false);
  114. this.PerformLayout();
  115. }
  116. #endregion
  117. private System.Windows.Forms.TextBox UserName;
  118. private System.Windows.Forms.Label UserName_lable;
  119. private System.Windows.Forms.TextBox PassWord;
  120. private System.Windows.Forms.Label PassWord_label;
  121. private System.Windows.Forms.TextBox Source;
  122. private System.Windows.Forms.Label Source_label;
  123. private System.Windows.Forms.Button CheckLogin;
  124. }
  125. }