1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367
|
namespace KeePass.Forms
{
partial class KeyCreationForm
{
/// <summary>
/// Erforderliche Designervariable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Verwendete Ressourcen bereinigen.
/// </summary>
/// <param name="disposing">True, wenn verwaltete Ressourcen gelöscht werden sollen; andernfalls False.</param>
protected override void Dispose(bool disposing)
{
if(disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Vom Windows Form-Designer generierter Code
/// <summary>
/// Erforderliche Methode für die Designerunterstützung.
/// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden.
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(KeyCreationForm));
this.m_lblIntro = new System.Windows.Forms.Label();
this.m_lblMultiInfo = new System.Windows.Forms.Label();
this.m_cbPassword = new System.Windows.Forms.CheckBox();
this.m_tbPassword = new System.Windows.Forms.TextBox();
this.m_lblRepeatPassword = new System.Windows.Forms.Label();
this.m_tbRepeatPassword = new System.Windows.Forms.TextBox();
this.m_cbKeyFile = new System.Windows.Forms.CheckBox();
this.m_cbUserAccount = new System.Windows.Forms.CheckBox();
this.m_lblWindowsAccDesc = new System.Windows.Forms.Label();
this.m_lblKeyFileInfo = new System.Windows.Forms.Label();
this.m_btnCancel = new System.Windows.Forms.Button();
this.m_btnCreate = new System.Windows.Forms.Button();
this.m_ttRect = new System.Windows.Forms.ToolTip(this.components);
this.m_cbHidePassword = new System.Windows.Forms.CheckBox();
this.m_btnSaveKeyFile = new System.Windows.Forms.Button();
this.m_btnOpenKeyFile = new System.Windows.Forms.Button();
this.m_btnHelp = new System.Windows.Forms.Button();
this.m_lblSeparator = new System.Windows.Forms.Label();
this.m_pbPasswordQuality = new KeePass.UI.QualityProgressBar();
this.m_lblEstimatedQuality = new System.Windows.Forms.Label();
this.m_lblQualityBits = new System.Windows.Forms.Label();
this.m_bannerImage = new System.Windows.Forms.PictureBox();
this.m_cmbKeyFile = new System.Windows.Forms.ComboBox();
this.m_lblWindowsAccDesc2 = new System.Windows.Forms.Label();
((System.ComponentModel.ISupportInitialize)(this.m_bannerImage)).BeginInit();
this.SuspendLayout();
//
// m_lblIntro
//
this.m_lblIntro.Location = new System.Drawing.Point(9, 72);
this.m_lblIntro.Name = "m_lblIntro";
this.m_lblIntro.Size = new System.Drawing.Size(498, 13);
this.m_lblIntro.TabIndex = 19;
this.m_lblIntro.Text = "Specify the composite master key, which will be used to encrypt the database.";
//
// m_lblMultiInfo
//
this.m_lblMultiInfo.Location = new System.Drawing.Point(9, 93);
this.m_lblMultiInfo.Name = "m_lblMultiInfo";
this.m_lblMultiInfo.Size = new System.Drawing.Size(498, 42);
this.m_lblMultiInfo.TabIndex = 20;
this.m_lblMultiInfo.Text = resources.GetString("m_lblMultiInfo.Text");
//
// m_cbPassword
//
this.m_cbPassword.AutoSize = true;
this.m_cbPassword.Location = new System.Drawing.Point(12, 147);
this.m_cbPassword.Name = "m_cbPassword";
this.m_cbPassword.Size = new System.Drawing.Size(109, 17);
this.m_cbPassword.TabIndex = 21;
this.m_cbPassword.Text = "Master password:";
this.m_cbPassword.UseVisualStyleBackColor = true;
this.m_cbPassword.CheckedChanged += new System.EventHandler(this.OnCheckedPassword);
//
// m_tbPassword
//
this.m_tbPassword.Location = new System.Drawing.Point(150, 145);
this.m_tbPassword.Name = "m_tbPassword";
this.m_tbPassword.Size = new System.Drawing.Size(319, 20);
this.m_tbPassword.TabIndex = 0;
this.m_tbPassword.UseSystemPasswordChar = true;
//
// m_lblRepeatPassword
//
this.m_lblRepeatPassword.AutoSize = true;
this.m_lblRepeatPassword.Location = new System.Drawing.Point(28, 174);
this.m_lblRepeatPassword.Name = "m_lblRepeatPassword";
this.m_lblRepeatPassword.Size = new System.Drawing.Size(93, 13);
this.m_lblRepeatPassword.TabIndex = 2;
this.m_lblRepeatPassword.Text = "Repeat password:";
//
// m_tbRepeatPassword
//
this.m_tbRepeatPassword.Location = new System.Drawing.Point(150, 171);
this.m_tbRepeatPassword.Name = "m_tbRepeatPassword";
this.m_tbRepeatPassword.Size = new System.Drawing.Size(319, 20);
this.m_tbRepeatPassword.TabIndex = 3;
this.m_tbRepeatPassword.UseSystemPasswordChar = true;
//
// m_cbKeyFile
//
this.m_cbKeyFile.AutoSize = true;
this.m_cbKeyFile.Location = new System.Drawing.Point(12, 223);
this.m_cbKeyFile.Name = "m_cbKeyFile";
this.m_cbKeyFile.Size = new System.Drawing.Size(112, 17);
this.m_cbKeyFile.TabIndex = 7;
this.m_cbKeyFile.Text = "Key file / provider:";
this.m_cbKeyFile.UseVisualStyleBackColor = true;
this.m_cbKeyFile.CheckedChanged += new System.EventHandler(this.OnCheckedKeyFile);
//
// m_cbUserAccount
//
this.m_cbUserAccount.AutoSize = true;
this.m_cbUserAccount.Location = new System.Drawing.Point(12, 308);
this.m_cbUserAccount.Name = "m_cbUserAccount";
this.m_cbUserAccount.Size = new System.Drawing.Size(135, 17);
this.m_cbUserAccount.TabIndex = 12;
this.m_cbUserAccount.Text = "Windows user account";
this.m_cbUserAccount.UseVisualStyleBackColor = true;
this.m_cbUserAccount.CheckedChanged += new System.EventHandler(this.OnWinUserCheckedChanged);
//
// m_lblWindowsAccDesc
//
this.m_lblWindowsAccDesc.Location = new System.Drawing.Point(28, 328);
this.m_lblWindowsAccDesc.Name = "m_lblWindowsAccDesc";
this.m_lblWindowsAccDesc.Size = new System.Drawing.Size(479, 27);
this.m_lblWindowsAccDesc.TabIndex = 13;
this.m_lblWindowsAccDesc.Text = "This source uses data of the current Windows user. This data does not change when" +
" the Windows account password changes.";
//
// m_lblKeyFileInfo
//
this.m_lblKeyFileInfo.Location = new System.Drawing.Point(28, 273);
this.m_lblKeyFileInfo.Name = "m_lblKeyFileInfo";
this.m_lblKeyFileInfo.Size = new System.Drawing.Size(479, 28);
this.m_lblKeyFileInfo.TabIndex = 11;
this.m_lblKeyFileInfo.Text = "Create a new key file or browse your disks for an existing one. If you have insta" +
"lled a key provider plugin, it is also listed in this combo box.";
//
// m_btnCancel
//
this.m_btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.m_btnCancel.Location = new System.Drawing.Point(432, 430);
this.m_btnCancel.Name = "m_btnCancel";
this.m_btnCancel.Size = new System.Drawing.Size(75, 23);
this.m_btnCancel.TabIndex = 18;
this.m_btnCancel.Text = "&Cancel";
this.m_btnCancel.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
this.m_btnCancel.UseVisualStyleBackColor = true;
this.m_btnCancel.Click += new System.EventHandler(this.OnBtnCancel);
//
// m_btnCreate
//
this.m_btnCreate.DialogResult = System.Windows.Forms.DialogResult.OK;
this.m_btnCreate.Location = new System.Drawing.Point(351, 430);
this.m_btnCreate.Name = "m_btnCreate";
this.m_btnCreate.Size = new System.Drawing.Size(75, 23);
this.m_btnCreate.TabIndex = 17;
this.m_btnCreate.Text = "&OK";
this.m_btnCreate.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
this.m_btnCreate.UseVisualStyleBackColor = true;
this.m_btnCreate.Click += new System.EventHandler(this.OnBtnOK);
//
// m_ttRect
//
this.m_ttRect.AutomaticDelay = 250;
this.m_ttRect.AutoPopDelay = 5000;
this.m_ttRect.InitialDelay = 250;
this.m_ttRect.ReshowDelay = 50;
//
// m_cbHidePassword
//
this.m_cbHidePassword.Appearance = System.Windows.Forms.Appearance.Button;
this.m_cbHidePassword.Image = global::KeePass.Properties.Resources.B17x05_3BlackDots;
this.m_cbHidePassword.Location = new System.Drawing.Point(475, 143);
this.m_cbHidePassword.Name = "m_cbHidePassword";
this.m_cbHidePassword.Size = new System.Drawing.Size(32, 23);
this.m_cbHidePassword.TabIndex = 1;
this.m_cbHidePassword.UseVisualStyleBackColor = true;
//
// m_btnSaveKeyFile
//
this.m_btnSaveKeyFile.Image = global::KeePass.Properties.Resources.B15x14_FileNew;
this.m_btnSaveKeyFile.Location = new System.Drawing.Point(341, 247);
this.m_btnSaveKeyFile.Name = "m_btnSaveKeyFile";
this.m_btnSaveKeyFile.Size = new System.Drawing.Size(80, 23);
this.m_btnSaveKeyFile.TabIndex = 9;
this.m_btnSaveKeyFile.Text = " C&reate...";
this.m_btnSaveKeyFile.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
this.m_btnSaveKeyFile.UseVisualStyleBackColor = true;
this.m_btnSaveKeyFile.Click += new System.EventHandler(this.OnClickKeyFileCreate);
//
// m_btnOpenKeyFile
//
this.m_btnOpenKeyFile.Image = global::KeePass.Properties.Resources.B16x16_Folder_Blue_Open;
this.m_btnOpenKeyFile.Location = new System.Drawing.Point(427, 247);
this.m_btnOpenKeyFile.Name = "m_btnOpenKeyFile";
this.m_btnOpenKeyFile.Size = new System.Drawing.Size(80, 23);
this.m_btnOpenKeyFile.TabIndex = 10;
this.m_btnOpenKeyFile.Text = " &Browse...";
this.m_btnOpenKeyFile.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
this.m_btnOpenKeyFile.UseVisualStyleBackColor = true;
this.m_btnOpenKeyFile.Click += new System.EventHandler(this.OnClickKeyFileBrowse);
//
// m_btnHelp
//
this.m_btnHelp.Location = new System.Drawing.Point(12, 430);
this.m_btnHelp.Name = "m_btnHelp";
this.m_btnHelp.Size = new System.Drawing.Size(75, 23);
this.m_btnHelp.TabIndex = 16;
this.m_btnHelp.Text = "&Help";
this.m_btnHelp.UseVisualStyleBackColor = true;
this.m_btnHelp.Click += new System.EventHandler(this.OnBtnHelp);
//
// m_lblSeparator
//
this.m_lblSeparator.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.m_lblSeparator.Location = new System.Drawing.Point(0, 422);
this.m_lblSeparator.Name = "m_lblSeparator";
this.m_lblSeparator.Size = new System.Drawing.Size(519, 2);
this.m_lblSeparator.TabIndex = 15;
//
// m_pbPasswordQuality
//
this.m_pbPasswordQuality.Location = new System.Drawing.Point(150, 197);
this.m_pbPasswordQuality.Maximum = 100;
this.m_pbPasswordQuality.Minimum = 0;
this.m_pbPasswordQuality.Name = "m_pbPasswordQuality";
this.m_pbPasswordQuality.Size = new System.Drawing.Size(262, 14);
this.m_pbPasswordQuality.Style = System.Windows.Forms.ProgressBarStyle.Continuous;
this.m_pbPasswordQuality.TabIndex = 5;
this.m_pbPasswordQuality.TabStop = false;
this.m_pbPasswordQuality.Value = 0;
//
// m_lblEstimatedQuality
//
this.m_lblEstimatedQuality.AutoSize = true;
this.m_lblEstimatedQuality.Location = new System.Drawing.Point(28, 198);
this.m_lblEstimatedQuality.Name = "m_lblEstimatedQuality";
this.m_lblEstimatedQuality.Size = new System.Drawing.Size(89, 13);
this.m_lblEstimatedQuality.TabIndex = 4;
this.m_lblEstimatedQuality.Text = "Estimated quality:";
//
// m_lblQualityBits
//
this.m_lblQualityBits.Location = new System.Drawing.Point(416, 197);
this.m_lblQualityBits.Name = "m_lblQualityBits";
this.m_lblQualityBits.Size = new System.Drawing.Size(53, 13);
this.m_lblQualityBits.TabIndex = 6;
this.m_lblQualityBits.Text = "9999 bits";
this.m_lblQualityBits.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// m_bannerImage
//
this.m_bannerImage.Dock = System.Windows.Forms.DockStyle.Top;
this.m_bannerImage.Location = new System.Drawing.Point(0, 0);
this.m_bannerImage.Name = "m_bannerImage";
this.m_bannerImage.Size = new System.Drawing.Size(519, 60);
this.m_bannerImage.TabIndex = 15;
this.m_bannerImage.TabStop = false;
//
// m_cmbKeyFile
//
this.m_cmbKeyFile.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.m_cmbKeyFile.FormattingEnabled = true;
this.m_cmbKeyFile.Location = new System.Drawing.Point(150, 220);
this.m_cmbKeyFile.MaxDropDownItems = 16;
this.m_cmbKeyFile.Name = "m_cmbKeyFile";
this.m_cmbKeyFile.Size = new System.Drawing.Size(357, 21);
this.m_cmbKeyFile.TabIndex = 8;
this.m_cmbKeyFile.SelectedIndexChanged += new System.EventHandler(this.OnKeyFileSelectedIndexChanged);
//
// m_lblWindowsAccDesc2
//
this.m_lblWindowsAccDesc2.Location = new System.Drawing.Point(28, 359);
this.m_lblWindowsAccDesc2.Name = "m_lblWindowsAccDesc2";
this.m_lblWindowsAccDesc2.Size = new System.Drawing.Size(476, 55);
this.m_lblWindowsAccDesc2.TabIndex = 14;
this.m_lblWindowsAccDesc2.Text = resources.GetString("m_lblWindowsAccDesc2.Text");
//
// KeyCreationForm
//
this.AcceptButton = this.m_btnCreate;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.m_btnCancel;
this.ClientSize = new System.Drawing.Size(519, 464);
this.Controls.Add(this.m_lblWindowsAccDesc2);
this.Controls.Add(this.m_cmbKeyFile);
this.Controls.Add(this.m_lblQualityBits);
this.Controls.Add(this.m_lblEstimatedQuality);
this.Controls.Add(this.m_pbPasswordQuality);
this.Controls.Add(this.m_lblSeparator);
this.Controls.Add(this.m_btnHelp);
this.Controls.Add(this.m_lblKeyFileInfo);
this.Controls.Add(this.m_lblWindowsAccDesc);
this.Controls.Add(this.m_cbHidePassword);
this.Controls.Add(this.m_bannerImage);
this.Controls.Add(this.m_btnCancel);
this.Controls.Add(this.m_btnCreate);
this.Controls.Add(this.m_cbUserAccount);
this.Controls.Add(this.m_btnSaveKeyFile);
this.Controls.Add(this.m_btnOpenKeyFile);
this.Controls.Add(this.m_cbKeyFile);
this.Controls.Add(this.m_tbRepeatPassword);
this.Controls.Add(this.m_lblRepeatPassword);
this.Controls.Add(this.m_tbPassword);
this.Controls.Add(this.m_cbPassword);
this.Controls.Add(this.m_lblMultiInfo);
this.Controls.Add(this.m_lblIntro);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "KeyCreationForm";
this.ShowInTaskbar = false;
this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "<>";
this.Load += new System.EventHandler(this.OnFormLoad);
this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.OnFormClosed);
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.OnFormClosing);
((System.ComponentModel.ISupportInitialize)(this.m_bannerImage)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label m_lblIntro;
private System.Windows.Forms.Label m_lblMultiInfo;
private System.Windows.Forms.CheckBox m_cbPassword;
private System.Windows.Forms.TextBox m_tbPassword;
private System.Windows.Forms.Label m_lblRepeatPassword;
private System.Windows.Forms.TextBox m_tbRepeatPassword;
private System.Windows.Forms.CheckBox m_cbKeyFile;
private System.Windows.Forms.Button m_btnOpenKeyFile;
private System.Windows.Forms.Button m_btnSaveKeyFile;
private System.Windows.Forms.CheckBox m_cbUserAccount;
private System.Windows.Forms.Button m_btnCreate;
private System.Windows.Forms.Button m_btnCancel;
private System.Windows.Forms.PictureBox m_bannerImage;
private System.Windows.Forms.CheckBox m_cbHidePassword;
private System.Windows.Forms.Label m_lblWindowsAccDesc;
private System.Windows.Forms.Label m_lblKeyFileInfo;
private System.Windows.Forms.ToolTip m_ttRect;
private System.Windows.Forms.Button m_btnHelp;
private System.Windows.Forms.Label m_lblSeparator;
private KeePass.UI.QualityProgressBar m_pbPasswordQuality;
private System.Windows.Forms.Label m_lblEstimatedQuality;
private System.Windows.Forms.Label m_lblQualityBits;
private System.Windows.Forms.ComboBox m_cmbKeyFile;
private System.Windows.Forms.Label m_lblWindowsAccDesc2;
}
}
|