generated from noisedestroyers/claude
134 lines
6.4 KiB
C#
134 lines
6.4 KiB
C#
|
|
namespace CCNetControls
|
|||
|
|
{
|
|||
|
|
partial class ManuscriptLogin
|
|||
|
|
{
|
|||
|
|
/// <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.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
|
|||
|
|
this.txt_UserName = new System.Windows.Forms.TextBox();
|
|||
|
|
this.txt_Password = new System.Windows.Forms.TextBox();
|
|||
|
|
this.button1 = new System.Windows.Forms.Button();
|
|||
|
|
this.label1 = new System.Windows.Forms.Label();
|
|||
|
|
this.label2 = new System.Windows.Forms.Label();
|
|||
|
|
this.tableLayoutPanel1.SuspendLayout();
|
|||
|
|
this.SuspendLayout();
|
|||
|
|
//
|
|||
|
|
// tableLayoutPanel1
|
|||
|
|
//
|
|||
|
|
this.tableLayoutPanel1.ColumnCount = 2;
|
|||
|
|
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
|
|||
|
|
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
|
|||
|
|
this.tableLayoutPanel1.Controls.Add(this.txt_UserName, 1, 0);
|
|||
|
|
this.tableLayoutPanel1.Controls.Add(this.txt_Password, 1, 1);
|
|||
|
|
this.tableLayoutPanel1.Controls.Add(this.button1, 0, 2);
|
|||
|
|
this.tableLayoutPanel1.Controls.Add(this.label1, 0, 0);
|
|||
|
|
this.tableLayoutPanel1.Controls.Add(this.label2, 0, 1);
|
|||
|
|
this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
|
|||
|
|
this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
|
|||
|
|
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
|
|||
|
|
this.tableLayoutPanel1.RowCount = 4;
|
|||
|
|
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
|
|||
|
|
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
|
|||
|
|
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
|
|||
|
|
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
|
|||
|
|
this.tableLayoutPanel1.Size = new System.Drawing.Size(477, 87);
|
|||
|
|
this.tableLayoutPanel1.TabIndex = 0;
|
|||
|
|
//
|
|||
|
|
// txt_UserName
|
|||
|
|
//
|
|||
|
|
this.txt_UserName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
|||
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|||
|
|
this.txt_UserName.Location = new System.Drawing.Point(105, 3);
|
|||
|
|
this.txt_UserName.Name = "txt_UserName";
|
|||
|
|
this.txt_UserName.Size = new System.Drawing.Size(369, 20);
|
|||
|
|
this.txt_UserName.TabIndex = 0;
|
|||
|
|
//
|
|||
|
|
// txt_Password
|
|||
|
|
//
|
|||
|
|
this.txt_Password.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
|||
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|||
|
|
this.txt_Password.Location = new System.Drawing.Point(105, 29);
|
|||
|
|
this.txt_Password.Name = "txt_Password";
|
|||
|
|
this.txt_Password.Size = new System.Drawing.Size(369, 20);
|
|||
|
|
this.txt_Password.TabIndex = 1;
|
|||
|
|
this.txt_Password.UseSystemPasswordChar = true;
|
|||
|
|
//
|
|||
|
|
// button1
|
|||
|
|
//
|
|||
|
|
this.button1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
|||
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|||
|
|
this.tableLayoutPanel1.SetColumnSpan(this.button1, 2);
|
|||
|
|
this.button1.Location = new System.Drawing.Point(3, 55);
|
|||
|
|
this.button1.Name = "button1";
|
|||
|
|
this.button1.Size = new System.Drawing.Size(471, 23);
|
|||
|
|
this.button1.TabIndex = 2;
|
|||
|
|
this.button1.Text = "Login";
|
|||
|
|
this.button1.UseVisualStyleBackColor = true;
|
|||
|
|
this.button1.Click += new System.EventHandler(this.button1_Click);
|
|||
|
|
//
|
|||
|
|
// label1
|
|||
|
|
//
|
|||
|
|
this.label1.AutoSize = true;
|
|||
|
|
this.label1.Location = new System.Drawing.Point(3, 0);
|
|||
|
|
this.label1.Name = "label1";
|
|||
|
|
this.label1.Size = new System.Drawing.Size(96, 13);
|
|||
|
|
this.label1.TabIndex = 3;
|
|||
|
|
this.label1.Text = "User Name (email):";
|
|||
|
|
//
|
|||
|
|
// label2
|
|||
|
|
//
|
|||
|
|
this.label2.AutoSize = true;
|
|||
|
|
this.label2.Location = new System.Drawing.Point(3, 26);
|
|||
|
|
this.label2.Name = "label2";
|
|||
|
|
this.label2.Size = new System.Drawing.Size(56, 13);
|
|||
|
|
this.label2.TabIndex = 4;
|
|||
|
|
this.label2.Text = "Password:";
|
|||
|
|
//
|
|||
|
|
// ManuscriptLogin
|
|||
|
|
//
|
|||
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|||
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|||
|
|
this.ClientSize = new System.Drawing.Size(477, 87);
|
|||
|
|
this.Controls.Add(this.tableLayoutPanel1);
|
|||
|
|
this.Name = "ManuscriptLogin";
|
|||
|
|
this.Text = "ManuscriptLogin";
|
|||
|
|
this.tableLayoutPanel1.ResumeLayout(false);
|
|||
|
|
this.tableLayoutPanel1.PerformLayout();
|
|||
|
|
this.ResumeLayout(false);
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
#endregion
|
|||
|
|
|
|||
|
|
private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
|
|||
|
|
private System.Windows.Forms.TextBox txt_UserName;
|
|||
|
|
private System.Windows.Forms.TextBox txt_Password;
|
|||
|
|
private System.Windows.Forms.Button button1;
|
|||
|
|
private System.Windows.Forms.Label label1;
|
|||
|
|
private System.Windows.Forms.Label label2;
|
|||
|
|
}
|
|||
|
|
}
|