LoginForm.Designer.cs 4.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. namespace PhotoStudioApp
  2. {
  3. partial class LoginForm
  4. {
  5. private System.ComponentModel.IContainer components = null;
  6. protected override void Dispose(bool disposing)
  7. {
  8. if (disposing && (components != null))
  9. {
  10. components.Dispose();
  11. }
  12. base.Dispose(disposing);
  13. }
  14. #region Windows Form Designer generated code
  15. private void InitializeComponent()
  16. {
  17. this.lblLogin = new System.Windows.Forms.Label();
  18. this.lblPassword = new System.Windows.Forms.Label();
  19. this.txtLogin = new System.Windows.Forms.TextBox();
  20. this.txtPassword = new System.Windows.Forms.TextBox();
  21. this.btnLogin = new System.Windows.Forms.Button();
  22. this.SuspendLayout();
  23. // lblLogin
  24. this.lblLogin.AutoSize = true;
  25. this.lblLogin.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  26. this.lblLogin.Location = new System.Drawing.Point(50, 60);
  27. this.lblLogin.Name = "lblLogin";
  28. this.lblLogin.Size = new System.Drawing.Size(55, 20);
  29. this.lblLogin.TabIndex = 0;
  30. this.lblLogin.Text = "Логин:";
  31. // lblPassword
  32. this.lblPassword.AutoSize = true;
  33. this.lblPassword.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  34. this.lblPassword.Location = new System.Drawing.Point(50, 110);
  35. this.lblPassword.Name = "lblPassword";
  36. this.lblPassword.Size = new System.Drawing.Size(67, 20);
  37. this.lblPassword.TabIndex = 1;
  38. this.lblPassword.Text = "Пароль:";
  39. // txtLogin
  40. this.txtLogin.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  41. this.txtLogin.Location = new System.Drawing.Point(150, 57);
  42. this.txtLogin.Name = "txtLogin";
  43. this.txtLogin.Size = new System.Drawing.Size(200, 26);
  44. this.txtLogin.TabIndex = 2;
  45. // txtPassword
  46. this.txtPassword.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  47. this.txtPassword.Location = new System.Drawing.Point(150, 107);
  48. this.txtPassword.Name = "txtPassword";
  49. this.txtPassword.PasswordChar = '*';
  50. this.txtPassword.Size = new System.Drawing.Size(200, 26);
  51. this.txtPassword.TabIndex = 3;
  52. // btnLogin
  53. this.btnLogin.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  54. this.btnLogin.Location = new System.Drawing.Point(150, 160);
  55. this.btnLogin.Name = "btnLogin";
  56. this.btnLogin.Size = new System.Drawing.Size(150, 35);
  57. this.btnLogin.TabIndex = 4;
  58. this.btnLogin.Text = "Войти";
  59. this.btnLogin.UseVisualStyleBackColor = true;
  60. this.btnLogin.Click += new System.EventHandler(this.btnLogin_Click);
  61. // LoginForm
  62. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  63. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  64. this.ClientSize = new System.Drawing.Size(400, 250);
  65. this.Controls.Add(this.btnLogin);
  66. this.Controls.Add(this.txtPassword);
  67. this.Controls.Add(this.txtLogin);
  68. this.Controls.Add(this.lblPassword);
  69. this.Controls.Add(this.lblLogin);
  70. this.Name = "LoginForm";
  71. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  72. this.Text = "Вход в систему";
  73. this.ResumeLayout(false);
  74. this.PerformLayout();
  75. }
  76. #endregion
  77. private System.Windows.Forms.Label lblLogin;
  78. private System.Windows.Forms.Label lblPassword;
  79. private System.Windows.Forms.TextBox txtLogin;
  80. private System.Windows.Forms.TextBox txtPassword;
  81. private System.Windows.Forms.Button btnLogin;
  82. }
  83. }