126 lines
5.8 KiB
C#
126 lines
5.8 KiB
C#
namespace Ionic.Zip.Forms
|
|
{
|
|
partial class PasswordDialog
|
|
{
|
|
/// <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.components = new System.ComponentModel.Container();
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(PasswordDialog));
|
|
this.button1 = new System.Windows.Forms.Button();
|
|
this.textBox1 = new System.Windows.Forms.TextBox();
|
|
this.prompt = new System.Windows.Forms.Label();
|
|
this.btnCancel = new System.Windows.Forms.Button();
|
|
this.button2 = new System.Windows.Forms.Button();
|
|
this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
|
|
this.SuspendLayout();
|
|
//
|
|
// button1
|
|
//
|
|
this.button1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.button1.Location = new System.Drawing.Point(218, 35);
|
|
this.button1.Name = "button1";
|
|
this.button1.Size = new System.Drawing.Size(38, 23);
|
|
this.button1.TabIndex = 10;
|
|
this.button1.Text = "OK";
|
|
this.toolTip1.SetToolTip(this.button1, "Use the specirfied password for extraction of this entry and subsequent entries.");
|
|
this.button1.UseVisualStyleBackColor = true;
|
|
this.button1.Click += new System.EventHandler(this.btnOk_Click);
|
|
//
|
|
// textBox1
|
|
//
|
|
this.textBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.textBox1.Location = new System.Drawing.Point(12, 37);
|
|
this.textBox1.Name = "textBox1";
|
|
this.textBox1.PasswordChar = '*';
|
|
this.textBox1.Size = new System.Drawing.Size(200, 20);
|
|
this.textBox1.TabIndex = 0;
|
|
//
|
|
// prompt
|
|
//
|
|
this.prompt.AutoSize = true;
|
|
this.prompt.Location = new System.Drawing.Point(12, 15);
|
|
this.prompt.Name = "prompt";
|
|
this.prompt.Size = new System.Drawing.Size(138, 13);
|
|
this.prompt.TabIndex = 20;
|
|
this.prompt.Text = "Enter the password for Xxxx";
|
|
//
|
|
// btnCancel
|
|
//
|
|
this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.btnCancel.Location = new System.Drawing.Point(311, 35);
|
|
this.btnCancel.Name = "btnCancel";
|
|
this.btnCancel.Size = new System.Drawing.Size(58, 23);
|
|
this.btnCancel.TabIndex = 30;
|
|
this.btnCancel.Text = "Cancel";
|
|
this.toolTip1.SetToolTip(this.btnCancel, "Cancel extraction of this and all subsequent entries");
|
|
this.btnCancel.UseVisualStyleBackColor = true;
|
|
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
|
|
//
|
|
// button2
|
|
//
|
|
this.button2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.button2.Location = new System.Drawing.Point(261, 35);
|
|
this.button2.Name = "button2";
|
|
this.button2.Size = new System.Drawing.Size(45, 23);
|
|
this.button2.TabIndex = 20;
|
|
this.button2.Text = "Skip";
|
|
this.toolTip1.SetToolTip(this.button2, "Skip extraction of this entry");
|
|
this.button2.UseVisualStyleBackColor = true;
|
|
this.button2.Click += new System.EventHandler(this.button2_Click);
|
|
//
|
|
// PasswordDialog
|
|
//
|
|
this.AcceptButton = this.button1;
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(381, 69);
|
|
this.Controls.Add(this.btnCancel);
|
|
this.Controls.Add(this.button2);
|
|
this.Controls.Add(this.button1);
|
|
this.Controls.Add(this.textBox1);
|
|
this.Controls.Add(this.prompt);
|
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
|
this.MaximizeBox = false;
|
|
this.MinimizeBox = false;
|
|
this.Name = "PasswordDialog";
|
|
this.Text = "Password for zip extraction?";
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Button button1;
|
|
private System.Windows.Forms.TextBox textBox1;
|
|
private System.Windows.Forms.Label prompt;
|
|
private System.Windows.Forms.Button btnCancel;
|
|
private System.Windows.Forms.Button button2;
|
|
private System.Windows.Forms.ToolTip toolTip1;
|
|
}
|
|
} |