12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
-
- namespace BeautySaloon
- {
- partial class AdminAuthForm
- {
- /// <summary>
- /// Required designer variable.
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// Clean up any resources being used.
- /// </summary>
- /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows Form Designer generated code
- /// <summary>
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- /// </summary>
- private void InitializeComponent()
- {
- System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AdminAuthForm));
- this.AuthBox = new System.Windows.Forms.TextBox();
- this.label1 = new System.Windows.Forms.Label();
- this.AuthButton = new System.Windows.Forms.Button();
- this.SuspendLayout();
- //
- // AuthBox
- //
- this.AuthBox.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
- this.AuthBox.Location = new System.Drawing.Point(88, 60);
- this.AuthBox.Name = "AuthBox";
- this.AuthBox.Size = new System.Drawing.Size(133, 30);
- this.AuthBox.TabIndex = 0;
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
- this.label1.Location = new System.Drawing.Point(12, 9);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(283, 48);
- this.label1.TabIndex = 1;
- this.label1.Text = "Введите пароль для входа \r\n в режим администратора";
- //
- // AuthButton
- //
- this.AuthButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.AuthButton.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
- this.AuthButton.Location = new System.Drawing.Point(88, 107);
- this.AuthButton.Name = "AuthButton";
- this.AuthButton.Size = new System.Drawing.Size(133, 38);
- this.AuthButton.TabIndex = 2;
- this.AuthButton.Text = "Войти";
- this.AuthButton.UseVisualStyleBackColor = true;
- this.AuthButton.Click += new System.EventHandler(this.AuthButton_Click);
- //
- // AdminAuthForm
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.BackColor = System.Drawing.Color.White;
- this.ClientSize = new System.Drawing.Size(304, 164);
- this.Controls.Add(this.AuthButton);
- this.Controls.Add(this.label1);
- this.Controls.Add(this.AuthBox);
- this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
- this.Name = "AdminAuthForm";
- this.Text = "Авторизация";
- this.ResumeLayout(false);
- this.PerformLayout();
- }
- #endregion
- private System.Windows.Forms.TextBox AuthBox;
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.Button AuthButton;
- }
- }
|