| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- namespace RestaurantApp
- {
- partial class LoginForm
- {
- private System.ComponentModel.IContainer components = null;
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- private void InitializeComponent()
- {
- this.txtLogin = new System.Windows.Forms.TextBox();
- this.txtPassword = new System.Windows.Forms.TextBox();
- this.btnLogin = new System.Windows.Forms.Button();
- this.btnCancel = new System.Windows.Forms.Button();
- this.lblLogin = new System.Windows.Forms.Label();
- this.lblPassword = new System.Windows.Forms.Label();
- this.SuspendLayout();
- //
- // txtLogin
- //
- this.txtLogin.Location = new System.Drawing.Point(50, 55);
- this.txtLogin.Name = "txtLogin";
- this.txtLogin.Size = new System.Drawing.Size(200, 20);
- this.txtLogin.TabIndex = 1;
- //
- // txtPassword
- //
- this.txtPassword.Location = new System.Drawing.Point(50, 105);
- this.txtPassword.Name = "txtPassword";
- this.txtPassword.PasswordChar = '*';
- this.txtPassword.Size = new System.Drawing.Size(200, 20);
- this.txtPassword.TabIndex = 3;
- //
- // btnLogin
- //
- this.btnLogin.Location = new System.Drawing.Point(50, 145);
- this.btnLogin.Name = "btnLogin";
- this.btnLogin.Size = new System.Drawing.Size(90, 30);
- this.btnLogin.TabIndex = 4;
- this.btnLogin.Text = "Вход";
- this.btnLogin.UseVisualStyleBackColor = true;
- //
- // btnCancel
- //
- this.btnCancel.Location = new System.Drawing.Point(160, 145);
- this.btnCancel.Name = "btnCancel";
- this.btnCancel.Size = new System.Drawing.Size(90, 30);
- this.btnCancel.TabIndex = 5;
- this.btnCancel.Text = "Отмена";
- this.btnCancel.UseVisualStyleBackColor = true;
- //
- // lblLogin
- //
- this.lblLogin.AutoSize = true;
- this.lblLogin.Location = new System.Drawing.Point(50, 35);
- this.lblLogin.Name = "lblLogin";
- this.lblLogin.Size = new System.Drawing.Size(41, 13);
- this.lblLogin.TabIndex = 0;
- this.lblLogin.Text = "Логин:";
- //
- // lblPassword
- //
- this.lblPassword.AutoSize = true;
- this.lblPassword.Location = new System.Drawing.Point(50, 85);
- this.lblPassword.Name = "lblPassword";
- this.lblPassword.Size = new System.Drawing.Size(48, 13);
- this.lblPassword.TabIndex = 2;
- this.lblPassword.Text = "Пароль:";
- //
- // LoginForm
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(300, 210);
- this.Controls.Add(this.btnCancel);
- this.Controls.Add(this.btnLogin);
- this.Controls.Add(this.txtPassword);
- this.Controls.Add(this.lblPassword);
- this.Controls.Add(this.txtLogin);
- this.Controls.Add(this.lblLogin);
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
- this.MaximizeBox = false;
- this.Name = "LoginForm";
- this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
- this.Text = "Авторизация";
- this.ResumeLayout(false);
- this.PerformLayout();
- }
- private System.Windows.Forms.TextBox txtLogin;
- private System.Windows.Forms.TextBox txtPassword;
- private System.Windows.Forms.Button btnLogin;
- private System.Windows.Forms.Button btnCancel;
- private System.Windows.Forms.Label lblLogin;
- private System.Windows.Forms.Label lblPassword;
- }
- }
|