AdminAuthForm.Designer.cs 3.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. 
  2. namespace BeautySaloon
  3. {
  4. partial class AdminAuthForm
  5. {
  6. /// <summary>
  7. /// Required designer variable.
  8. /// </summary>
  9. private System.ComponentModel.IContainer components = null;
  10. /// <summary>
  11. /// Clean up any resources being used.
  12. /// </summary>
  13. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  14. protected override void Dispose(bool disposing)
  15. {
  16. if (disposing && (components != null))
  17. {
  18. components.Dispose();
  19. }
  20. base.Dispose(disposing);
  21. }
  22. #region Windows Form Designer generated code
  23. /// <summary>
  24. /// Required method for Designer support - do not modify
  25. /// the contents of this method with the code editor.
  26. /// </summary>
  27. private void InitializeComponent()
  28. {
  29. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AdminAuthForm));
  30. this.AuthBox = new System.Windows.Forms.TextBox();
  31. this.label1 = new System.Windows.Forms.Label();
  32. this.AuthButton = new System.Windows.Forms.Button();
  33. this.SuspendLayout();
  34. //
  35. // AuthBox
  36. //
  37. this.AuthBox.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  38. this.AuthBox.Location = new System.Drawing.Point(88, 60);
  39. this.AuthBox.Name = "AuthBox";
  40. this.AuthBox.Size = new System.Drawing.Size(133, 30);
  41. this.AuthBox.TabIndex = 0;
  42. //
  43. // label1
  44. //
  45. this.label1.AutoSize = true;
  46. this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  47. this.label1.Location = new System.Drawing.Point(12, 9);
  48. this.label1.Name = "label1";
  49. this.label1.Size = new System.Drawing.Size(283, 48);
  50. this.label1.TabIndex = 1;
  51. this.label1.Text = "Введите пароль для входа \r\n в режим администратора";
  52. //
  53. // AuthButton
  54. //
  55. this.AuthButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  56. this.AuthButton.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  57. this.AuthButton.Location = new System.Drawing.Point(88, 107);
  58. this.AuthButton.Name = "AuthButton";
  59. this.AuthButton.Size = new System.Drawing.Size(133, 38);
  60. this.AuthButton.TabIndex = 2;
  61. this.AuthButton.Text = "Войти";
  62. this.AuthButton.UseVisualStyleBackColor = true;
  63. this.AuthButton.Click += new System.EventHandler(this.AuthButton_Click);
  64. //
  65. // AdminAuthForm
  66. //
  67. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  68. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  69. this.BackColor = System.Drawing.Color.White;
  70. this.ClientSize = new System.Drawing.Size(304, 164);
  71. this.Controls.Add(this.AuthButton);
  72. this.Controls.Add(this.label1);
  73. this.Controls.Add(this.AuthBox);
  74. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  75. this.Name = "AdminAuthForm";
  76. this.Text = "Авторизация";
  77. this.ResumeLayout(false);
  78. this.PerformLayout();
  79. }
  80. #endregion
  81. private System.Windows.Forms.TextBox AuthBox;
  82. private System.Windows.Forms.Label label1;
  83. private System.Windows.Forms.Button AuthButton;
  84. }
  85. }