Skip to content
Snippets Groups Projects
Select Git revision
  • cc1f2c811dce4d48f438c9dde2dfd278f836f295
  • master default protected
2 results

Loginform.Designer.cs

Blame
  • Loginform.Designer.cs 4.38 KiB
    namespace RDPClient
    {
        partial class Loginform
        {
            /// <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(Loginform));
                this.Email = new System.Windows.Forms.Label();
                this.label2 = new System.Windows.Forms.Label();
                this.Email_txt = new System.Windows.Forms.TextBox();
                this.PW_txt = new System.Windows.Forms.TextBox();
                this.Login_button = new System.Windows.Forms.Button();
                this.SuspendLayout();
                // 
                // Email
                // 
                this.Email.AutoSize = true;
                this.Email.BackColor = System.Drawing.SystemColors.ButtonFace;
                this.Email.Location = new System.Drawing.Point(52, 62);
                this.Email.Name = "Email";
                this.Email.Size = new System.Drawing.Size(37, 12);
                this.Email.TabIndex = 0;
                this.Email.Text = "Email";
                // 
                // label2
                // 
                this.label2.AutoSize = true;
                this.label2.Location = new System.Drawing.Point(52, 96);
                this.label2.Name = "label2";
                this.label2.Size = new System.Drawing.Size(62, 12);
                this.label2.TabIndex = 1;
                this.label2.Text = "Password";
                // 
                // Email_txt
                // 
                this.Email_txt.Location = new System.Drawing.Point(119, 59);
                this.Email_txt.Name = "Email_txt";
                this.Email_txt.Size = new System.Drawing.Size(141, 21);
                this.Email_txt.TabIndex = 2;
                // 
                // PW_txt
                // 
                this.PW_txt.Location = new System.Drawing.Point(120, 87);
                this.PW_txt.Name = "PW_txt";
                this.PW_txt.PasswordChar = '*';
                this.PW_txt.Size = new System.Drawing.Size(140, 21);
                this.PW_txt.TabIndex = 3;
                this.PW_txt.KeyDown += new System.Windows.Forms.KeyEventHandler(this.PW_txt_KeyDown);
                // 
                // Login_button
                // 
                this.Login_button.Location = new System.Drawing.Point(184, 149);
                this.Login_button.Name = "Login_button";
                this.Login_button.Size = new System.Drawing.Size(75, 23);
                this.Login_button.TabIndex = 4;
                this.Login_button.Text = "Login";
                this.Login_button.UseVisualStyleBackColor = true;
                this.Login_button.Click += new System.EventHandler(this.Login_button_Click);
                // 
                // Loginform
                // 
                this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
                this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
                this.ClientSize = new System.Drawing.Size(327, 193);
                this.Controls.Add(this.Login_button);
                this.Controls.Add(this.PW_txt);
                this.Controls.Add(this.Email_txt);
                this.Controls.Add(this.label2);
                this.Controls.Add(this.Email);
                this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
                this.MaximizeBox = false;
                this.MinimizeBox = false;
                this.Name = "Loginform";
                this.Text = "LoginForm";
                this.ResumeLayout(false);
                this.PerformLayout();
    
            }
    
            #endregion
    
            private System.Windows.Forms.Label Email;
            private System.Windows.Forms.Label label2;
            private System.Windows.Forms.TextBox Email_txt;
            private System.Windows.Forms.TextBox PW_txt;
            private System.Windows.Forms.Button Login_button;
        }
    }