112 lines
3.5 KiB
C#
112 lines
3.5 KiB
C#
namespace LibationWinForm_Framework.Dialogs.Login
|
|
{
|
|
partial class AudibleLoginDialog
|
|
{
|
|
/// <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.passwordLbl = new System.Windows.Forms.Label();
|
|
this.emailLbl = new System.Windows.Forms.Label();
|
|
this.passwordTb = new System.Windows.Forms.TextBox();
|
|
this.emailTb = new System.Windows.Forms.TextBox();
|
|
this.submitBtn = new System.Windows.Forms.Button();
|
|
this.SuspendLayout();
|
|
//
|
|
// passwordLbl
|
|
//
|
|
this.passwordLbl.AutoSize = true;
|
|
this.passwordLbl.Location = new System.Drawing.Point(12, 41);
|
|
this.passwordLbl.Name = "passwordLbl";
|
|
this.passwordLbl.Size = new System.Drawing.Size(53, 13);
|
|
this.passwordLbl.TabIndex = 2;
|
|
this.passwordLbl.Text = "Password";
|
|
//
|
|
// emailLbl
|
|
//
|
|
this.emailLbl.AutoSize = true;
|
|
this.emailLbl.Location = new System.Drawing.Point(12, 15);
|
|
this.emailLbl.Name = "emailLbl";
|
|
this.emailLbl.Size = new System.Drawing.Size(32, 13);
|
|
this.emailLbl.TabIndex = 0;
|
|
this.emailLbl.Text = "Email";
|
|
//
|
|
// passwordTb
|
|
//
|
|
this.passwordTb.Location = new System.Drawing.Point(71, 38);
|
|
this.passwordTb.Name = "passwordTb";
|
|
this.passwordTb.PasswordChar = '*';
|
|
this.passwordTb.Size = new System.Drawing.Size(200, 20);
|
|
this.passwordTb.TabIndex = 3;
|
|
//
|
|
// emailTb
|
|
//
|
|
this.emailTb.Location = new System.Drawing.Point(71, 12);
|
|
this.emailTb.Name = "emailTb";
|
|
this.emailTb.Size = new System.Drawing.Size(200, 20);
|
|
this.emailTb.TabIndex = 1;
|
|
//
|
|
// submitBtn
|
|
//
|
|
this.submitBtn.Location = new System.Drawing.Point(196, 64);
|
|
this.submitBtn.Name = "submitBtn";
|
|
this.submitBtn.Size = new System.Drawing.Size(75, 23);
|
|
this.submitBtn.TabIndex = 4;
|
|
this.submitBtn.Text = "Submit";
|
|
this.submitBtn.UseVisualStyleBackColor = true;
|
|
//
|
|
// AudibleLoginDialog
|
|
//
|
|
this.AcceptButton = this.submitBtn;
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(283, 99);
|
|
this.Controls.Add(this.submitBtn);
|
|
this.Controls.Add(this.passwordLbl);
|
|
this.Controls.Add(this.emailLbl);
|
|
this.Controls.Add(this.passwordTb);
|
|
this.Controls.Add(this.emailTb);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
|
|
this.MaximizeBox = false;
|
|
this.MinimizeBox = false;
|
|
this.Name = "AudibleLoginDialog";
|
|
this.ShowIcon = false;
|
|
this.ShowInTaskbar = false;
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
|
this.Text = "Audible Login";
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Label passwordLbl;
|
|
private System.Windows.Forms.Label emailLbl;
|
|
private System.Windows.Forms.TextBox passwordTb;
|
|
private System.Windows.Forms.TextBox emailTb;
|
|
private System.Windows.Forms.Button submitBtn;
|
|
}
|
|
} |