first commit
This commit is contained in:
138
C4IT_DataHistoryProvider_Test/frmPasssword.Designer.cs
generated
Normal file
138
C4IT_DataHistoryProvider_Test/frmPasssword.Designer.cs
generated
Normal file
@@ -0,0 +1,138 @@
|
||||
namespace C4IT.Security
|
||||
{
|
||||
partial class frmPassword
|
||||
{
|
||||
/// <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(frmPassword));
|
||||
this.label1 = new System.Windows.Forms.Label();
|
||||
this.txtPassword = new System.Windows.Forms.TextBox();
|
||||
this.butCopy = new System.Windows.Forms.Button();
|
||||
this.butCancel = new System.Windows.Forms.Button();
|
||||
this.chkShow = new System.Windows.Forms.CheckBox();
|
||||
this.butClean = new System.Windows.Forms.Button();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// label1
|
||||
//
|
||||
this.label1.AutoSize = true;
|
||||
this.label1.Location = new System.Drawing.Point(20, 20);
|
||||
this.label1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
|
||||
this.label1.Name = "label1";
|
||||
this.label1.Size = new System.Drawing.Size(201, 20);
|
||||
this.label1.TabIndex = 0;
|
||||
this.label1.Text = "Please enter the password:";
|
||||
//
|
||||
// txtPassword
|
||||
//
|
||||
this.txtPassword.Location = new System.Drawing.Point(24, 54);
|
||||
this.txtPassword.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
|
||||
this.txtPassword.Name = "txtPassword";
|
||||
this.txtPassword.Size = new System.Drawing.Size(553, 26);
|
||||
this.txtPassword.TabIndex = 1;
|
||||
this.txtPassword.UseSystemPasswordChar = true;
|
||||
//
|
||||
// butCopy
|
||||
//
|
||||
this.butCopy.Location = new System.Drawing.Point(52, 165);
|
||||
this.butCopy.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
|
||||
this.butCopy.Name = "butCopy";
|
||||
this.butCopy.Size = new System.Drawing.Size(172, 37);
|
||||
this.butCopy.TabIndex = 2;
|
||||
this.butCopy.Text = "Copy to clipboard";
|
||||
this.butCopy.UseVisualStyleBackColor = true;
|
||||
this.butCopy.Click += new System.EventHandler(this.butCopy_Click);
|
||||
//
|
||||
// butCancel
|
||||
//
|
||||
this.butCancel.Location = new System.Drawing.Point(428, 165);
|
||||
this.butCancel.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
|
||||
this.butCancel.Name = "butCancel";
|
||||
this.butCancel.Size = new System.Drawing.Size(112, 37);
|
||||
this.butCancel.TabIndex = 3;
|
||||
this.butCancel.Text = "Close";
|
||||
this.butCancel.UseVisualStyleBackColor = true;
|
||||
this.butCancel.Click += new System.EventHandler(this.butCancel_Click);
|
||||
//
|
||||
// chkShow
|
||||
//
|
||||
this.chkShow.AutoSize = true;
|
||||
this.chkShow.Location = new System.Drawing.Point(46, 100);
|
||||
this.chkShow.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
|
||||
this.chkShow.Name = "chkShow";
|
||||
this.chkShow.Size = new System.Drawing.Size(147, 24);
|
||||
this.chkShow.TabIndex = 4;
|
||||
this.chkShow.Text = "Show password";
|
||||
this.chkShow.UseVisualStyleBackColor = true;
|
||||
this.chkShow.CheckStateChanged += new System.EventHandler(this.chkShow_CheckStateChanged);
|
||||
//
|
||||
// butClean
|
||||
//
|
||||
this.butClean.Location = new System.Drawing.Point(240, 165);
|
||||
this.butClean.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
|
||||
this.butClean.Name = "butClean";
|
||||
this.butClean.Size = new System.Drawing.Size(172, 37);
|
||||
this.butClean.TabIndex = 5;
|
||||
this.butClean.Text = "Cleanup clipboard";
|
||||
this.butClean.UseVisualStyleBackColor = true;
|
||||
this.butClean.Click += new System.EventHandler(this.butClean_Click);
|
||||
//
|
||||
// frmPassword
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.ClientSize = new System.Drawing.Size(597, 223);
|
||||
this.Controls.Add(this.butClean);
|
||||
this.Controls.Add(this.chkShow);
|
||||
this.Controls.Add(this.butCancel);
|
||||
this.Controls.Add(this.butCopy);
|
||||
this.Controls.Add(this.txtPassword);
|
||||
this.Controls.Add(this.label1);
|
||||
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
|
||||
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
||||
this.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
|
||||
this.MaximizeBox = false;
|
||||
this.MinimizeBox = false;
|
||||
this.Name = "frmPassword";
|
||||
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
||||
this.Text = "Secure Password ";
|
||||
this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.frmPassword_FormClosed);
|
||||
this.ResumeLayout(false);
|
||||
this.PerformLayout();
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
private System.Windows.Forms.Label label1;
|
||||
private System.Windows.Forms.TextBox txtPassword;
|
||||
private System.Windows.Forms.Button butCopy;
|
||||
private System.Windows.Forms.Button butCancel;
|
||||
private System.Windows.Forms.CheckBox chkShow;
|
||||
private System.Windows.Forms.Button butClean;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user