LoginForm.Designer.cs 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. namespace RestaurantApp
  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. private void InitializeComponent()
  15. {
  16. this.txtLogin = new System.Windows.Forms.TextBox();
  17. this.txtPassword = new System.Windows.Forms.TextBox();
  18. this.btnLogin = new System.Windows.Forms.Button();
  19. this.btnCancel = new System.Windows.Forms.Button();
  20. this.lblLogin = new System.Windows.Forms.Label();
  21. this.lblPassword = new System.Windows.Forms.Label();
  22. this.SuspendLayout();
  23. //
  24. // txtLogin
  25. //
  26. this.txtLogin.Location = new System.Drawing.Point(50, 55);
  27. this.txtLogin.Name = "txtLogin";
  28. this.txtLogin.Size = new System.Drawing.Size(200, 20);
  29. this.txtLogin.TabIndex = 1;
  30. //
  31. // txtPassword
  32. //
  33. this.txtPassword.Location = new System.Drawing.Point(50, 105);
  34. this.txtPassword.Name = "txtPassword";
  35. this.txtPassword.PasswordChar = '*';
  36. this.txtPassword.Size = new System.Drawing.Size(200, 20);
  37. this.txtPassword.TabIndex = 3;
  38. //
  39. // btnLogin
  40. //
  41. this.btnLogin.Location = new System.Drawing.Point(50, 145);
  42. this.btnLogin.Name = "btnLogin";
  43. this.btnLogin.Size = new System.Drawing.Size(90, 30);
  44. this.btnLogin.TabIndex = 4;
  45. this.btnLogin.Text = "Вход";
  46. this.btnLogin.UseVisualStyleBackColor = true;
  47. //
  48. // btnCancel
  49. //
  50. this.btnCancel.Location = new System.Drawing.Point(160, 145);
  51. this.btnCancel.Name = "btnCancel";
  52. this.btnCancel.Size = new System.Drawing.Size(90, 30);
  53. this.btnCancel.TabIndex = 5;
  54. this.btnCancel.Text = "Отмена";
  55. this.btnCancel.UseVisualStyleBackColor = true;
  56. //
  57. // lblLogin
  58. //
  59. this.lblLogin.AutoSize = true;
  60. this.lblLogin.Location = new System.Drawing.Point(50, 35);
  61. this.lblLogin.Name = "lblLogin";
  62. this.lblLogin.Size = new System.Drawing.Size(41, 13);
  63. this.lblLogin.TabIndex = 0;
  64. this.lblLogin.Text = "Логин:";
  65. //
  66. // lblPassword
  67. //
  68. this.lblPassword.AutoSize = true;
  69. this.lblPassword.Location = new System.Drawing.Point(50, 85);
  70. this.lblPassword.Name = "lblPassword";
  71. this.lblPassword.Size = new System.Drawing.Size(48, 13);
  72. this.lblPassword.TabIndex = 2;
  73. this.lblPassword.Text = "Пароль:";
  74. //
  75. // LoginForm
  76. //
  77. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  78. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  79. this.ClientSize = new System.Drawing.Size(300, 210);
  80. this.Controls.Add(this.btnCancel);
  81. this.Controls.Add(this.btnLogin);
  82. this.Controls.Add(this.txtPassword);
  83. this.Controls.Add(this.lblPassword);
  84. this.Controls.Add(this.txtLogin);
  85. this.Controls.Add(this.lblLogin);
  86. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
  87. this.MaximizeBox = false;
  88. this.Name = "LoginForm";
  89. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  90. this.Text = "Авторизация";
  91. this.ResumeLayout(false);
  92. this.PerformLayout();
  93. }
  94. private System.Windows.Forms.TextBox txtLogin;
  95. private System.Windows.Forms.TextBox txtPassword;
  96. private System.Windows.Forms.Button btnLogin;
  97. private System.Windows.Forms.Button btnCancel;
  98. private System.Windows.Forms.Label lblLogin;
  99. private System.Windows.Forms.Label lblPassword;
  100. }
  101. }