123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143 |
- namespace konkursTest14
- {
- 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.LoginT = new System.Windows.Forms.TextBox();
- this.Password = new System.Windows.Forms.TextBox();
- this.login = new System.Windows.Forms.Button();
- this.label1 = new System.Windows.Forms.Label();
- this.panel1 = new System.Windows.Forms.Panel();
- this.radioButton1 = new System.Windows.Forms.RadioButton();
- this.radioButton2 = new System.Windows.Forms.RadioButton();
- this.panel1.SuspendLayout();
- this.SuspendLayout();
- //
- // LoginT
- //
- this.LoginT.Location = new System.Drawing.Point(79, 107);
- this.LoginT.Name = "LoginT";
- this.LoginT.Size = new System.Drawing.Size(145, 20);
- this.LoginT.TabIndex = 0;
- this.LoginT.Text = "Введите логин";
- this.LoginT.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- this.LoginT.Enter += new System.EventHandler(this.LoginT_Enter);
- this.LoginT.Leave += new System.EventHandler(this.LoginT_Leave);
- //
- // Password
- //
- this.Password.Location = new System.Drawing.Point(79, 145);
- this.Password.Name = "Password";
- this.Password.Size = new System.Drawing.Size(145, 20);
- this.Password.TabIndex = 1;
- this.Password.Text = "Введите пароль";
- this.Password.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
- this.Password.Enter += new System.EventHandler(this.Password_Enter);
- this.Password.Leave += new System.EventHandler(this.Password_Leave);
- //
- // login
- //
- this.login.Location = new System.Drawing.Point(78, 248);
- this.login.Name = "login";
- this.login.Size = new System.Drawing.Size(145, 30);
- this.login.TabIndex = 2;
- this.login.Text = "Войти";
- this.login.UseVisualStyleBackColor = true;
- this.login.Click += new System.EventHandler(this.login_Click);
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.Location = new System.Drawing.Point(105, 68);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(95, 13);
- this.label1.TabIndex = 3;
- this.label1.Text = "Авторизируйтесь";
- //
- // panel1
- //
- this.panel1.Controls.Add(this.radioButton2);
- this.panel1.Controls.Add(this.radioButton1);
- this.panel1.Location = new System.Drawing.Point(47, 171);
- this.panel1.Name = "panel1";
- this.panel1.Size = new System.Drawing.Size(212, 58);
- this.panel1.TabIndex = 4;
- //
- // radioButton1
- //
- this.radioButton1.AutoSize = true;
- this.radioButton1.Checked = true;
- this.radioButton1.Location = new System.Drawing.Point(19, 20);
- this.radioButton1.Name = "radioButton1";
- this.radioButton1.Size = new System.Drawing.Size(58, 17);
- this.radioButton1.TabIndex = 0;
- this.radioButton1.TabStop = true;
- this.radioButton1.Text = "Админ";
- this.radioButton1.UseVisualStyleBackColor = true;
- //
- // radioButton2
- //
- this.radioButton2.AutoSize = true;
- this.radioButton2.Location = new System.Drawing.Point(114, 20);
- this.radioButton2.Name = "radioButton2";
- this.radioButton2.Size = new System.Drawing.Size(78, 17);
- this.radioButton2.TabIndex = 1;
- this.radioButton2.Text = "Менеджер";
- this.radioButton2.UseVisualStyleBackColor = true;
- //
- // Form1
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(308, 316);
- this.Controls.Add(this.panel1);
- this.Controls.Add(this.label1);
- this.Controls.Add(this.login);
- this.Controls.Add(this.Password);
- this.Controls.Add(this.LoginT);
- this.Name = "Form1";
- this.Text = "Авторизация";
- this.panel1.ResumeLayout(false);
- this.panel1.PerformLayout();
- this.ResumeLayout(false);
- this.PerformLayout();
- }
- #endregion
- private System.Windows.Forms.TextBox LoginT;
- private System.Windows.Forms.TextBox Password;
- private System.Windows.Forms.Button login;
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.Panel panel1;
- private System.Windows.Forms.RadioButton radioButton2;
- private System.Windows.Forms.RadioButton radioButton1;
- }
- }
|