Status: Fixed I have now added password verification dialogs to all password fields. git-svn-id: https://duplicati.googlecode.com/svn/trunk@674 59da171f-624f-0410-aa54-27559c288bec
99 lines
3.8 KiB
C#
99 lines
3.8 KiB
C#
namespace Duplicati.Winforms.Controls
|
|
{
|
|
partial class PasswordConfirmationDialog
|
|
{
|
|
/// <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(PasswordConfirmationDialog));
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.Password = new System.Windows.Forms.TextBox();
|
|
this.panel1 = new System.Windows.Forms.Panel();
|
|
this.OKBtn = new System.Windows.Forms.Button();
|
|
this.CancelBtn = new System.Windows.Forms.Button();
|
|
this.panel1.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// label1
|
|
//
|
|
resources.ApplyResources(this.label1, "label1");
|
|
this.label1.Name = "label1";
|
|
//
|
|
// Password
|
|
//
|
|
resources.ApplyResources(this.Password, "Password");
|
|
this.Password.Name = "Password";
|
|
this.Password.UseSystemPasswordChar = true;
|
|
//
|
|
// panel1
|
|
//
|
|
this.panel1.Controls.Add(this.CancelBtn);
|
|
this.panel1.Controls.Add(this.OKBtn);
|
|
resources.ApplyResources(this.panel1, "panel1");
|
|
this.panel1.Name = "panel1";
|
|
//
|
|
// OKBtn
|
|
//
|
|
resources.ApplyResources(this.OKBtn, "OKBtn");
|
|
this.OKBtn.Name = "OKBtn";
|
|
this.OKBtn.UseVisualStyleBackColor = true;
|
|
this.OKBtn.Click += new System.EventHandler(this.OKBtn_Click);
|
|
//
|
|
// CancelBtn
|
|
//
|
|
resources.ApplyResources(this.CancelBtn, "CancelBtn");
|
|
this.CancelBtn.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
|
this.CancelBtn.Name = "CancelBtn";
|
|
this.CancelBtn.UseVisualStyleBackColor = true;
|
|
//
|
|
// PasswordConfirmationDialog
|
|
//
|
|
this.AcceptButton = this.OKBtn;
|
|
resources.ApplyResources(this, "$this");
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.CancelButton = this.CancelBtn;
|
|
this.Controls.Add(this.panel1);
|
|
this.Controls.Add(this.Password);
|
|
this.Controls.Add(this.label1);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
|
|
this.MaximizeBox = false;
|
|
this.MinimizeBox = false;
|
|
this.Name = "PasswordConfirmationDialog";
|
|
this.panel1.ResumeLayout(false);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Label label1;
|
|
private System.Windows.Forms.TextBox Password;
|
|
private System.Windows.Forms.Panel panel1;
|
|
private System.Windows.Forms.Button CancelBtn;
|
|
private System.Windows.Forms.Button OKBtn;
|
|
}
|
|
} |