123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132 |
- namespace testkonkurs1
- {
- partial class Form1
- {
- /// <summary>
- /// Обязательная переменная конструктора.
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// Освободить все используемые ресурсы.
- /// </summary>
- /// <param name="disposing">истинно, если управляемый ресурс должен быть удален; иначе ложно.</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Код, автоматически созданный конструктором форм Windows
- /// <summary>
- /// Требуемый метод для поддержки конструктора — не изменяйте
- /// содержимое этого метода с помощью редактора кода.
- /// </summary>
- private void InitializeComponent()
- {
- this.login = new System.Windows.Forms.TextBox();
- this.password = new System.Windows.Forms.TextBox();
- this.sing_in = new System.Windows.Forms.Button();
- this.panel1 = new System.Windows.Forms.Panel();
- this.adminCheck = new System.Windows.Forms.RadioButton();
- this.managerCheck = new System.Windows.Forms.RadioButton();
- this.panel1.SuspendLayout();
- this.SuspendLayout();
- //
- // login
- //
- this.login.Location = new System.Drawing.Point(96, 98);
- this.login.Name = "login";
- this.login.Size = new System.Drawing.Size(141, 20);
- this.login.TabIndex = 0;
- this.login.Text = "Введите логин";
- this.login.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- this.login.Enter += new System.EventHandler(this.login_Enter);
- this.login.Leave += new System.EventHandler(this.login_Leave);
- //
- // password
- //
- this.password.Location = new System.Drawing.Point(96, 134);
- this.password.Name = "password";
- this.password.Size = new System.Drawing.Size(140, 20);
- this.password.TabIndex = 1;
- this.password.Text = "Введите пароль";
- this.password.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- this.password.TextChanged += new System.EventHandler(this.password_TextChanged);
- this.password.Enter += new System.EventHandler(this.password_Enter);
- this.password.Leave += new System.EventHandler(this.password_Leave);
- //
- // sing_in
- //
- this.sing_in.Location = new System.Drawing.Point(110, 236);
- this.sing_in.Name = "sing_in";
- this.sing_in.Size = new System.Drawing.Size(102, 37);
- this.sing_in.TabIndex = 2;
- this.sing_in.Text = "Войти";
- this.sing_in.UseVisualStyleBackColor = true;
- this.sing_in.Click += new System.EventHandler(this.sing_in_Click);
- //
- // panel1
- //
- this.panel1.Controls.Add(this.managerCheck);
- this.panel1.Controls.Add(this.adminCheck);
- this.panel1.Location = new System.Drawing.Point(80, 174);
- this.panel1.Name = "panel1";
- this.panel1.Size = new System.Drawing.Size(213, 45);
- this.panel1.TabIndex = 3;
- //
- // adminCheck
- //
- this.adminCheck.AutoSize = true;
- this.adminCheck.Location = new System.Drawing.Point(0, 12);
- this.adminCheck.Name = "adminCheck";
- this.adminCheck.Size = new System.Drawing.Size(57, 17);
- this.adminCheck.TabIndex = 0;
- this.adminCheck.TabStop = true;
- this.adminCheck.Text = "админ";
- this.adminCheck.UseVisualStyleBackColor = true;
- //
- // managerCheck
- //
- this.managerCheck.AutoSize = true;
- this.managerCheck.Location = new System.Drawing.Point(109, 12);
- this.managerCheck.Name = "managerCheck";
- this.managerCheck.Size = new System.Drawing.Size(77, 17);
- this.managerCheck.TabIndex = 1;
- this.managerCheck.TabStop = true;
- this.managerCheck.Text = "менеджер";
- this.managerCheck.UseVisualStyleBackColor = true;
- //
- // Form1
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(356, 405);
- this.Controls.Add(this.panel1);
- this.Controls.Add(this.sing_in);
- this.Controls.Add(this.password);
- this.Controls.Add(this.login);
- this.Name = "Form1";
- this.Text = "Авторизация";
- this.panel1.ResumeLayout(false);
- this.panel1.PerformLayout();
- this.ResumeLayout(false);
- this.PerformLayout();
- }
- #endregion
- private System.Windows.Forms.TextBox login;
- private System.Windows.Forms.TextBox password;
- private System.Windows.Forms.Button sing_in;
- private System.Windows.Forms.Panel panel1;
- private System.Windows.Forms.RadioButton managerCheck;
- private System.Windows.Forms.RadioButton adminCheck;
- }
- }
|