123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
-
- namespace KadroviYshot
- {
- partial class FormAuthorization
- {
- /// <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.label1 = new System.Windows.Forms.Label();
- this.label2 = new System.Windows.Forms.Label();
- this.textBoxLogin = new System.Windows.Forms.TextBox();
- this.textBoxPassword = new System.Windows.Forms.TextBox();
- this.btnEnter = new System.Windows.Forms.Button();
- this.SuspendLayout();
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.Location = new System.Drawing.Point(137, 115);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(38, 13);
- this.label1.TabIndex = 0;
- this.label1.Text = "Логин";
- //
- // label2
- //
- this.label2.AutoSize = true;
- this.label2.Location = new System.Drawing.Point(137, 146);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(45, 13);
- this.label2.TabIndex = 1;
- this.label2.Text = "Пароль";
- //
- // textBoxLogin
- //
- this.textBoxLogin.Location = new System.Drawing.Point(213, 107);
- this.textBoxLogin.Name = "textBoxLogin";
- this.textBoxLogin.Size = new System.Drawing.Size(100, 20);
- this.textBoxLogin.TabIndex = 2;
- //
- // textBoxPassword
- //
- this.textBoxPassword.Location = new System.Drawing.Point(213, 139);
- this.textBoxPassword.Name = "textBoxPassword";
- this.textBoxPassword.Size = new System.Drawing.Size(100, 20);
- this.textBoxPassword.TabIndex = 3;
- //
- // btnEnter
- //
- this.btnEnter.Location = new System.Drawing.Point(238, 198);
- this.btnEnter.Name = "btnEnter";
- this.btnEnter.Size = new System.Drawing.Size(75, 23);
- this.btnEnter.TabIndex = 4;
- this.btnEnter.Text = "Войти";
- this.btnEnter.UseVisualStyleBackColor = true;
- this.btnEnter.Click += new System.EventHandler(this.btnEnter_Click);
- //
- // FormAuthorization
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(800, 450);
- this.Controls.Add(this.btnEnter);
- this.Controls.Add(this.textBoxPassword);
- this.Controls.Add(this.textBoxLogin);
- this.Controls.Add(this.label2);
- this.Controls.Add(this.label1);
- this.Name = "FormAuthorization";
- this.Text = "Авторизация";
- this.Load += new System.EventHandler(this.FormAuthorization_Load);
- this.ResumeLayout(false);
- this.PerformLayout();
- }
- #endregion
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.Label label2;
- private System.Windows.Forms.TextBox textBoxLogin;
- private System.Windows.Forms.TextBox textBoxPassword;
- private System.Windows.Forms.Button btnEnter;
- }
- }
|