Login.Designer.cs 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. namespace DataManager
  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.label1 = new System.Windows.Forms.Label();
  29. this.label2 = new System.Windows.Forms.Label();
  30. this.txtAccount = new System.Windows.Forms.TextBox();
  31. this.label3 = new System.Windows.Forms.Label();
  32. this.btnLogin = new System.Windows.Forms.Button();
  33. this.txtPassword = new System.Windows.Forms.MaskedTextBox();
  34. this.SuspendLayout();
  35. //
  36. // label1
  37. //
  38. this.label1.AutoSize = true;
  39. this.label1.Font = new System.Drawing.Font("微软雅黑", 21.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  40. this.label1.ForeColor = System.Drawing.SystemColors.MenuHighlight;
  41. this.label1.Location = new System.Drawing.Point(91, 71);
  42. this.label1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  43. this.label1.Name = "label1";
  44. this.label1.Size = new System.Drawing.Size(401, 38);
  45. this.label1.TabIndex = 0;
  46. this.label1.Text = "欢迎登录 DataManager V0.1";
  47. this.label1.TextAlign = System.Drawing.ContentAlignment.TopCenter;
  48. //
  49. // label2
  50. //
  51. this.label2.AutoSize = true;
  52. this.label2.Font = new System.Drawing.Font("微软雅黑", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  53. this.label2.Location = new System.Drawing.Point(149, 161);
  54. this.label2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  55. this.label2.Name = "label2";
  56. this.label2.Size = new System.Drawing.Size(39, 20);
  57. this.label2.TabIndex = 1;
  58. this.label2.Text = "用户";
  59. //
  60. // txtAccount
  61. //
  62. this.txtAccount.Location = new System.Drawing.Point(226, 159);
  63. this.txtAccount.MaxLength = 11;
  64. this.txtAccount.Name = "txtAccount";
  65. this.txtAccount.Size = new System.Drawing.Size(206, 25);
  66. this.txtAccount.TabIndex = 2;
  67. //
  68. // label3
  69. //
  70. this.label3.AutoSize = true;
  71. this.label3.Font = new System.Drawing.Font("微软雅黑", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  72. this.label3.Location = new System.Drawing.Point(149, 205);
  73. this.label3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  74. this.label3.Name = "label3";
  75. this.label3.Size = new System.Drawing.Size(39, 20);
  76. this.label3.TabIndex = 3;
  77. this.label3.Text = "密码";
  78. //
  79. // btnLogin
  80. //
  81. this.btnLogin.Location = new System.Drawing.Point(226, 254);
  82. this.btnLogin.Name = "btnLogin";
  83. this.btnLogin.Size = new System.Drawing.Size(206, 28);
  84. this.btnLogin.TabIndex = 5;
  85. this.btnLogin.Text = "登 录 系 统";
  86. this.btnLogin.UseVisualStyleBackColor = true;
  87. this.btnLogin.Click += new System.EventHandler(this.btnLogin_Click);
  88. //
  89. // txtPassword
  90. //
  91. this.txtPassword.Location = new System.Drawing.Point(226, 203);
  92. this.txtPassword.Name = "txtPassword";
  93. this.txtPassword.PasswordChar = '*';
  94. this.txtPassword.Size = new System.Drawing.Size(206, 25);
  95. this.txtPassword.TabIndex = 6;
  96. //
  97. // Login
  98. //
  99. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 19F);
  100. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  101. this.ClientSize = new System.Drawing.Size(619, 394);
  102. this.Controls.Add(this.txtPassword);
  103. this.Controls.Add(this.btnLogin);
  104. this.Controls.Add(this.label3);
  105. this.Controls.Add(this.txtAccount);
  106. this.Controls.Add(this.label2);
  107. this.Controls.Add(this.label1);
  108. this.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  109. this.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  110. this.MaximizeBox = false;
  111. this.MinimizeBox = false;
  112. this.Name = "Login";
  113. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  114. this.Text = "Login";
  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 txtAccount;
  122. private System.Windows.Forms.Label label3;
  123. private System.Windows.Forms.Button btnLogin;
  124. private System.Windows.Forms.MaskedTextBox txtPassword;
  125. }
  126. }