home *** CD-ROM | disk | FTP | other *** search
/ Freelog 119 / FreelogNo119-MarsAvril2014.iso / Securite / Granite / Granite.exe / PasswordDialog.Designer.cs < prev    next >
Text File  |  2011-06-11  |  6KB  |  126 lines

  1. ∩╗┐namespace Ionic.Zip.Forms
  2. {
  3.     partial class PasswordDialog
  4.     {
  5.         /// <summary>
  6.         /// Required designer variable.
  7.         /// </summary>
  8.         private System.ComponentModel.IContainer components = null;
  9.  
  10.         /// <summary>
  11.         /// Clean up any resources being used.
  12.         /// </summary>
  13.         /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  14.         protected override void Dispose(bool disposing)
  15.         {
  16.             if (disposing && (components != null))
  17.             {
  18.                 components.Dispose();
  19.             }
  20.             base.Dispose(disposing);
  21.         }
  22.  
  23.         #region Windows Form Designer generated code
  24.  
  25.         /// <summary>
  26.         /// Required method for Designer support - do not modify
  27.         /// the contents of this method with the code editor.
  28.         /// </summary>
  29.         private void InitializeComponent()
  30.         {
  31.             this.components = new System.ComponentModel.Container();
  32.             System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(PasswordDialog));
  33.             this.button1 = new System.Windows.Forms.Button();
  34.             this.textBox1 = new System.Windows.Forms.TextBox();
  35.             this.prompt = new System.Windows.Forms.Label();
  36.             this.btnCancel = new System.Windows.Forms.Button();
  37.             this.button2 = new System.Windows.Forms.Button();
  38.             this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
  39.             this.SuspendLayout();
  40.             // 
  41.             // button1
  42.             // 
  43.             this.button1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  44.             this.button1.Location = new System.Drawing.Point(218, 35);
  45.             this.button1.Name = "button1";
  46.             this.button1.Size = new System.Drawing.Size(38, 23);
  47.             this.button1.TabIndex = 10;
  48.             this.button1.Text = "OK";
  49.             this.toolTip1.SetToolTip(this.button1, "Use the specirfied password for extraction of this entry and subsequent entries.");
  50.             this.button1.UseVisualStyleBackColor = true;
  51.             this.button1.Click += new System.EventHandler(this.btnOk_Click);
  52.             // 
  53.             // textBox1
  54.             // 
  55.             this.textBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
  56.                         | System.Windows.Forms.AnchorStyles.Right)));
  57.             this.textBox1.Location = new System.Drawing.Point(12, 37);
  58.             this.textBox1.Name = "textBox1";
  59.             this.textBox1.PasswordChar = '*';
  60.             this.textBox1.Size = new System.Drawing.Size(200, 20);
  61.             this.textBox1.TabIndex = 0;
  62.             // 
  63.             // prompt
  64.             // 
  65.             this.prompt.AutoSize = true;
  66.             this.prompt.Location = new System.Drawing.Point(12, 15);
  67.             this.prompt.Name = "prompt";
  68.             this.prompt.Size = new System.Drawing.Size(138, 13);
  69.             this.prompt.TabIndex = 20;
  70.             this.prompt.Text = "Enter the password for Xxxx";
  71.             // 
  72.             // btnCancel
  73.             // 
  74.             this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  75.             this.btnCancel.Location = new System.Drawing.Point(311, 35);
  76.             this.btnCancel.Name = "btnCancel";
  77.             this.btnCancel.Size = new System.Drawing.Size(58, 23);
  78.             this.btnCancel.TabIndex = 30;
  79.             this.btnCancel.Text = "Cancel";
  80.             this.toolTip1.SetToolTip(this.btnCancel, "Cancel extraction of this and all subsequent entries");
  81.             this.btnCancel.UseVisualStyleBackColor = true;
  82.             this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
  83.             // 
  84.             // button2
  85.             // 
  86.             this.button2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  87.             this.button2.Location = new System.Drawing.Point(261, 35);
  88.             this.button2.Name = "button2";
  89.             this.button2.Size = new System.Drawing.Size(45, 23);
  90.             this.button2.TabIndex = 20;
  91.             this.button2.Text = "Skip";
  92.             this.toolTip1.SetToolTip(this.button2, "Skip extraction of this entry");
  93.             this.button2.UseVisualStyleBackColor = true;
  94.             this.button2.Click += new System.EventHandler(this.button2_Click);
  95.             // 
  96.             // PasswordDialog
  97.             // 
  98.             this.AcceptButton = this.button1;
  99.             this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  100.             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  101.             this.ClientSize = new System.Drawing.Size(381, 69);
  102.             this.Controls.Add(this.btnCancel);
  103.             this.Controls.Add(this.button2);
  104.             this.Controls.Add(this.button1);
  105.             this.Controls.Add(this.textBox1);
  106.             this.Controls.Add(this.prompt);
  107.             this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  108.             this.MaximizeBox = false;
  109.             this.MinimizeBox = false;
  110.             this.Name = "PasswordDialog";
  111.             this.Text = "Password for zip extraction?";
  112.             this.ResumeLayout(false);
  113.             this.PerformLayout();
  114.  
  115.         }
  116.  
  117.         #endregion
  118.  
  119.         private System.Windows.Forms.Button button1;
  120.         private System.Windows.Forms.TextBox textBox1;
  121.         private System.Windows.Forms.Label prompt;
  122.         private System.Windows.Forms.Button btnCancel;
  123.         private System.Windows.Forms.Button button2;
  124.         private System.Windows.Forms.ToolTip toolTip1;
  125.     }
  126. }