| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- namespace FietsClientV2
- {
- partial class Login
- {
- /// <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()
- {
- this.label1 = new System.Windows.Forms.Label();
- this.label2 = new System.Windows.Forms.Label();
- this.UsernameBox = new System.Windows.Forms.TextBox();
- this.PasswordBox = new System.Windows.Forms.TextBox();
- this.SubmitButton = new System.Windows.Forms.Button();
- this.SuspendLayout();
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.Location = new System.Drawing.Point(12, 9);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(58, 13);
- this.label1.TabIndex = 0;
- this.label1.Text = "Username:";
- //
- // label2
- //
- this.label2.AutoSize = true;
- this.label2.Location = new System.Drawing.Point(12, 39);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(56, 13);
- this.label2.TabIndex = 1;
- this.label2.Text = "Password:";
- //
- // UsernameBox
- //
- this.UsernameBox.Location = new System.Drawing.Point(76, 6);
- this.UsernameBox.Name = "UsernameBox";
- this.UsernameBox.Size = new System.Drawing.Size(223, 20);
- this.UsernameBox.TabIndex = 2;
- //
- // PasswordBox
- //
- this.PasswordBox.Location = new System.Drawing.Point(76, 36);
- this.PasswordBox.Name = "PasswordBox";
- this.PasswordBox.PasswordChar = '♥';
- this.PasswordBox.Size = new System.Drawing.Size(223, 20);
- this.PasswordBox.TabIndex = 3;
- //
- // SubmitButton
- //
- this.SubmitButton.Location = new System.Drawing.Point(224, 79);
- this.SubmitButton.Name = "SubmitButton";
- this.SubmitButton.Size = new System.Drawing.Size(75, 23);
- this.SubmitButton.TabIndex = 4;
- this.SubmitButton.Text = "Submit";
- this.SubmitButton.UseVisualStyleBackColor = true;
- this.SubmitButton.Click += new System.EventHandler(this.SubmitButton_Click);
- //
- // Login
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(311, 114);
- this.Controls.Add(this.SubmitButton);
- this.Controls.Add(this.PasswordBox);
- this.Controls.Add(this.UsernameBox);
- this.Controls.Add(this.label2);
- this.Controls.Add(this.label1);
- this.Name = "Login";
- this.Text = "Login";
- this.ResumeLayout(false);
- this.PerformLayout();
- }
- #endregion
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.Label label2;
- private System.Windows.Forms.TextBox UsernameBox;
- private System.Windows.Forms.TextBox PasswordBox;
- private System.Windows.Forms.Button SubmitButton;
- }
- }
|