forked from JanisEst/KeePassBrowserImporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ProviderForm.Designer.cs
507 lines (501 loc) · 23.1 KB
/
ProviderForm.Designer.cs
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
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
namespace KeePassBrowserImporter
{
partial class ProviderForm
{
/// <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();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.label1 = new System.Windows.Forms.Label();
this.chromiumIconBox = new System.Windows.Forms.PictureBox();
this.chromiumRadioButton = new System.Windows.Forms.RadioButton();
this.operaIconBox = new System.Windows.Forms.PictureBox();
this.operaRadioButton = new System.Windows.Forms.RadioButton();
this.chromeIconBox = new System.Windows.Forms.PictureBox();
this.chromeRadioButton = new System.Windows.Forms.RadioButton();
this.internetExplorerIconBox = new System.Windows.Forms.PictureBox();
this.internetExplorerRadioButton = new System.Windows.Forms.RadioButton();
this.firefoxIconBox = new System.Windows.Forms.PictureBox();
this.firefoxRadioButton = new System.Windows.Forms.RadioButton();
this.profileGroupBox = new System.Windows.Forms.GroupBox();
this.profilePathLabel = new System.Windows.Forms.Label();
this.label6 = new System.Windows.Forms.Label();
this.searchProfileButton = new System.Windows.Forms.Button();
this.label2 = new System.Windows.Forms.Label();
this.profileComboBox = new System.Windows.Forms.ComboBox();
this.masterPasswordGroupBox = new System.Windows.Forms.GroupBox();
this.masterPasswordTextBox = new System.Windows.Forms.TextBox();
this.label3 = new System.Windows.Forms.Label();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.useDatesCheckBox = new System.Windows.Forms.CheckBox();
this.extractIconCheckBox = new System.Windows.Forms.CheckBox();
this.extractTitleCheckBox = new System.Windows.Forms.CheckBox();
this.label4 = new System.Windows.Forms.Label();
this.closeButton = new System.Windows.Forms.Button();
this.startButton = new System.Windows.Forms.Button();
this.groupBox3 = new System.Windows.Forms.GroupBox();
this.groupComboBox = new System.Windows.Forms.ComboBox();
this.label5 = new System.Windows.Forms.Label();
this.infoToolTip = new System.Windows.Forms.ToolTip(this.components);
this.groupBox1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.chromiumIconBox)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.operaIconBox)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.chromeIconBox)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.internetExplorerIconBox)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.firefoxIconBox)).BeginInit();
this.profileGroupBox.SuspendLayout();
this.masterPasswordGroupBox.SuspendLayout();
this.groupBox2.SuspendLayout();
this.groupBox3.SuspendLayout();
this.SuspendLayout();
//
// groupBox1
//
this.groupBox1.Controls.Add(this.label1);
this.groupBox1.Controls.Add(this.chromiumIconBox);
this.groupBox1.Controls.Add(this.chromiumRadioButton);
this.groupBox1.Controls.Add(this.operaIconBox);
this.groupBox1.Controls.Add(this.operaRadioButton);
this.groupBox1.Controls.Add(this.chromeIconBox);
this.groupBox1.Controls.Add(this.chromeRadioButton);
this.groupBox1.Controls.Add(this.internetExplorerIconBox);
this.groupBox1.Controls.Add(this.internetExplorerRadioButton);
this.groupBox1.Controls.Add(this.firefoxIconBox);
this.groupBox1.Controls.Add(this.firefoxRadioButton);
this.groupBox1.Location = new System.Drawing.Point(12, 12);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(366, 153);
this.groupBox1.TabIndex = 0;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "Browser";
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(6, 16);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(236, 13);
this.label1.TabIndex = 10;
this.label1.Text = "Select the browser to import the credentials from.";
//
// chromiumIconBox
//
this.chromiumIconBox.Image = global::KeePassBrowserImporter.Properties.Resources.B16x16_Chromium;
this.chromiumIconBox.Location = new System.Drawing.Point(9, 127);
this.chromiumIconBox.Name = "chromiumIconBox";
this.chromiumIconBox.Size = new System.Drawing.Size(16, 16);
this.chromiumIconBox.TabIndex = 9;
this.chromiumIconBox.TabStop = false;
//
// chromiumRadioButton
//
this.chromiumRadioButton.AutoSize = true;
this.chromiumRadioButton.Location = new System.Drawing.Point(31, 127);
this.chromiumRadioButton.Name = "chromiumRadioButton";
this.chromiumRadioButton.Size = new System.Drawing.Size(71, 17);
this.chromiumRadioButton.TabIndex = 8;
this.chromiumRadioButton.TabStop = true;
this.chromiumRadioButton.Text = "Chromium";
this.infoToolTip.SetToolTip(this.chromiumRadioButton, "Portable Profile Path: ChromiumPortable\\Data\\Profiles\\Default");
this.chromiumRadioButton.UseVisualStyleBackColor = true;
this.chromiumRadioButton.CheckedChanged += new System.EventHandler(this.SelectBrowser_CheckedChanged);
//
// operaIconBox
//
this.operaIconBox.Image = global::KeePassBrowserImporter.Properties.Resources.B16x16_Opera;
this.operaIconBox.Location = new System.Drawing.Point(9, 104);
this.operaIconBox.Name = "operaIconBox";
this.operaIconBox.Size = new System.Drawing.Size(16, 16);
this.operaIconBox.TabIndex = 7;
this.operaIconBox.TabStop = false;
//
// operaRadioButton
//
this.operaRadioButton.AutoSize = true;
this.operaRadioButton.Location = new System.Drawing.Point(31, 104);
this.operaRadioButton.Name = "operaRadioButton";
this.operaRadioButton.Size = new System.Drawing.Size(54, 17);
this.operaRadioButton.TabIndex = 6;
this.operaRadioButton.TabStop = true;
this.operaRadioButton.Text = "Opera";
this.infoToolTip.SetToolTip(this.operaRadioButton, "Portable Profile Path: OperaPortable\\Data\\profile\\data");
this.operaRadioButton.UseVisualStyleBackColor = true;
this.operaRadioButton.CheckedChanged += new System.EventHandler(this.SelectBrowser_CheckedChanged);
//
// chromeIconBox
//
this.chromeIconBox.Image = global::KeePassBrowserImporter.Properties.Resources.B16x16_Chrome;
this.chromeIconBox.Location = new System.Drawing.Point(9, 81);
this.chromeIconBox.Name = "chromeIconBox";
this.chromeIconBox.Size = new System.Drawing.Size(16, 16);
this.chromeIconBox.TabIndex = 5;
this.chromeIconBox.TabStop = false;
//
// chromeRadioButton
//
this.chromeRadioButton.AutoSize = true;
this.chromeRadioButton.Location = new System.Drawing.Point(31, 81);
this.chromeRadioButton.Name = "chromeRadioButton";
this.chromeRadioButton.Size = new System.Drawing.Size(61, 17);
this.chromeRadioButton.TabIndex = 4;
this.chromeRadioButton.TabStop = true;
this.chromeRadioButton.Text = "Chrome";
this.infoToolTip.SetToolTip(this.chromeRadioButton, "Portable Profile Path: GoogleChromePortable\\Data\\profile\\Default");
this.chromeRadioButton.UseVisualStyleBackColor = true;
this.chromeRadioButton.CheckedChanged += new System.EventHandler(this.SelectBrowser_CheckedChanged);
//
// internetExplorerIconBox
//
this.internetExplorerIconBox.Image = global::KeePassBrowserImporter.Properties.Resources.B16x16_InternetExplorer;
this.internetExplorerIconBox.Location = new System.Drawing.Point(9, 58);
this.internetExplorerIconBox.Name = "internetExplorerIconBox";
this.internetExplorerIconBox.Size = new System.Drawing.Size(16, 16);
this.internetExplorerIconBox.TabIndex = 3;
this.internetExplorerIconBox.TabStop = false;
//
// internetExplorerRadioButton
//
this.internetExplorerRadioButton.AutoSize = true;
this.internetExplorerRadioButton.Location = new System.Drawing.Point(31, 58);
this.internetExplorerRadioButton.Name = "internetExplorerRadioButton";
this.internetExplorerRadioButton.Size = new System.Drawing.Size(138, 17);
this.internetExplorerRadioButton.TabIndex = 2;
this.internetExplorerRadioButton.TabStop = true;
this.internetExplorerRadioButton.Text = "Internet Explorer / Edge";
this.internetExplorerRadioButton.UseVisualStyleBackColor = true;
this.internetExplorerRadioButton.CheckedChanged += new System.EventHandler(this.SelectBrowser_CheckedChanged);
//
// firefoxIconBox
//
this.firefoxIconBox.Image = global::KeePassBrowserImporter.Properties.Resources.B16x16_Firefox;
this.firefoxIconBox.Location = new System.Drawing.Point(9, 35);
this.firefoxIconBox.Name = "firefoxIconBox";
this.firefoxIconBox.Size = new System.Drawing.Size(16, 16);
this.firefoxIconBox.TabIndex = 1;
this.firefoxIconBox.TabStop = false;
//
// firefoxRadioButton
//
this.firefoxRadioButton.AutoSize = true;
this.firefoxRadioButton.Location = new System.Drawing.Point(31, 35);
this.firefoxRadioButton.Name = "firefoxRadioButton";
this.firefoxRadioButton.Size = new System.Drawing.Size(56, 17);
this.firefoxRadioButton.TabIndex = 0;
this.firefoxRadioButton.TabStop = true;
this.firefoxRadioButton.Text = "Firefox";
this.infoToolTip.SetToolTip(this.firefoxRadioButton, "Portable Profile Path: FirefoxPortable\\Data\\profile");
this.firefoxRadioButton.UseVisualStyleBackColor = true;
this.firefoxRadioButton.CheckedChanged += new System.EventHandler(this.SelectBrowser_CheckedChanged);
//
// profileGroupBox
//
this.profileGroupBox.Controls.Add(this.profilePathLabel);
this.profileGroupBox.Controls.Add(this.label6);
this.profileGroupBox.Controls.Add(this.searchProfileButton);
this.profileGroupBox.Controls.Add(this.label2);
this.profileGroupBox.Controls.Add(this.profileComboBox);
this.profileGroupBox.Location = new System.Drawing.Point(12, 171);
this.profileGroupBox.Name = "profileGroupBox";
this.profileGroupBox.Size = new System.Drawing.Size(366, 97);
this.profileGroupBox.TabIndex = 1;
this.profileGroupBox.TabStop = false;
this.profileGroupBox.Text = "Profile";
//
// profilePathLabel
//
this.profilePathLabel.Location = new System.Drawing.Point(9, 76);
this.profilePathLabel.Name = "profilePathLabel";
this.profilePathLabel.Size = new System.Drawing.Size(348, 13);
this.profilePathLabel.TabIndex = 4;
this.profilePathLabel.Text = "<>";
//
// label6
//
this.label6.AutoSize = true;
this.label6.Location = new System.Drawing.Point(9, 62);
this.label6.Name = "label6";
this.label6.Size = new System.Drawing.Size(64, 13);
this.label6.TabIndex = 3;
this.label6.Text = "Profile-Path:";
//
// searchProfileButton
//
this.searchProfileButton.Location = new System.Drawing.Point(294, 36);
this.searchProfileButton.Name = "searchProfileButton";
this.searchProfileButton.Size = new System.Drawing.Size(32, 21);
this.searchProfileButton.TabIndex = 2;
this.searchProfileButton.Text = "...";
this.searchProfileButton.UseVisualStyleBackColor = true;
this.searchProfileButton.Click += new System.EventHandler(this.searchProfileButton_Click);
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(9, 16);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(218, 13);
this.label2.TabIndex = 1;
this.label2.Text = "Select the browser profile you want to import.";
//
// profileComboBox
//
this.profileComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.profileComboBox.FormattingEnabled = true;
this.profileComboBox.Location = new System.Drawing.Point(9, 36);
this.profileComboBox.Name = "profileComboBox";
this.profileComboBox.Size = new System.Drawing.Size(279, 21);
this.profileComboBox.TabIndex = 0;
this.infoToolTip.SetToolTip(this.profileComboBox, "If your profile is not listed here use the button on the right to search for the " +
"path by yourself.");
this.profileComboBox.SelectedIndexChanged += new System.EventHandler(this.profileComboBox_SelectedIndexChanged);
//
// masterPasswordGroupBox
//
this.masterPasswordGroupBox.Controls.Add(this.masterPasswordTextBox);
this.masterPasswordGroupBox.Controls.Add(this.label3);
this.masterPasswordGroupBox.Location = new System.Drawing.Point(12, 275);
this.masterPasswordGroupBox.Name = "masterPasswordGroupBox";
this.masterPasswordGroupBox.Size = new System.Drawing.Size(366, 66);
this.masterPasswordGroupBox.TabIndex = 2;
this.masterPasswordGroupBox.TabStop = false;
this.masterPasswordGroupBox.Text = "Master Password";
//
// masterPasswordTextBox
//
this.masterPasswordTextBox.Location = new System.Drawing.Point(9, 35);
this.masterPasswordTextBox.Name = "masterPasswordTextBox";
this.masterPasswordTextBox.Size = new System.Drawing.Size(279, 20);
this.masterPasswordTextBox.TabIndex = 1;
this.infoToolTip.SetToolTip(this.masterPasswordTextBox, "Some browsers let you specify a master password to protect the credentials.\r\nIf y" +
"ou have set a master password you need to provide it here.");
this.masterPasswordTextBox.UseSystemPasswordChar = true;
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(9, 16);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(241, 13);
this.label3.TabIndex = 0;
this.label3.Text = "If you have set a master password provide it here.";
//
// groupBox2
//
this.groupBox2.Controls.Add(this.useDatesCheckBox);
this.groupBox2.Controls.Add(this.extractIconCheckBox);
this.groupBox2.Controls.Add(this.extractTitleCheckBox);
this.groupBox2.Controls.Add(this.label4);
this.groupBox2.Location = new System.Drawing.Point(12, 421);
this.groupBox2.Name = "groupBox2";
this.groupBox2.Size = new System.Drawing.Size(366, 117);
this.groupBox2.TabIndex = 3;
this.groupBox2.TabStop = false;
this.groupBox2.Text = "Settings";
//
// useDatesCheckBox
//
this.useDatesCheckBox.AutoSize = true;
this.useDatesCheckBox.Checked = true;
this.useDatesCheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
this.useDatesCheckBox.Location = new System.Drawing.Point(11, 92);
this.useDatesCheckBox.Name = "useDatesCheckBox";
this.useDatesCheckBox.Size = new System.Drawing.Size(222, 17);
this.useDatesCheckBox.TabIndex = 3;
this.useDatesCheckBox.Text = "Use created / modified date from Browser";
this.infoToolTip.SetToolTip(this.useDatesCheckBox, "The entry in the database will be created with the created / modified date from t" +
"he browser.\r\nSome browsers only provide a created date while others don\'t provid" +
"e this info at all.");
this.useDatesCheckBox.UseVisualStyleBackColor = true;
//
// extractIconCheckBox
//
this.extractIconCheckBox.AutoSize = true;
this.extractIconCheckBox.Checked = true;
this.extractIconCheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
this.extractIconCheckBox.Location = new System.Drawing.Point(12, 69);
this.extractIconCheckBox.Name = "extractIconCheckBox";
this.extractIconCheckBox.Size = new System.Drawing.Size(170, 17);
this.extractIconCheckBox.TabIndex = 2;
this.extractIconCheckBox.Text = "Use website icon as entry icon";
this.infoToolTip.SetToolTip(this.extractIconCheckBox, "If enabled the entry will be created with the icon a browser shows in the titleba" +
"r for this website.\r\nIf this fails or no icon is available the default icon will" +
" be used.");
this.extractIconCheckBox.UseVisualStyleBackColor = true;
//
// extractTitleCheckBox
//
this.extractTitleCheckBox.AutoSize = true;
this.extractTitleCheckBox.Checked = true;
this.extractTitleCheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
this.extractTitleCheckBox.Location = new System.Drawing.Point(12, 46);
this.extractTitleCheckBox.Name = "extractTitleCheckBox";
this.extractTitleCheckBox.Size = new System.Drawing.Size(162, 17);
this.extractTitleCheckBox.TabIndex = 1;
this.extractTitleCheckBox.Text = "Use website title as entry title";
this.infoToolTip.SetToolTip(this.extractTitleCheckBox, "If enabled the entry will be created with the title a browser shows in the titleb" +
"ar for this website.\r\nIf this fails or no title is available the url of the webs" +
"ite will be used.");
this.extractTitleCheckBox.UseVisualStyleBackColor = true;
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(9, 16);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(353, 26);
this.label4.TabIndex = 0;
this.label4.Text = "Some settings need to connect to the webpage to extract the information.\r\nThis pr" +
"ocess could take some time, be patient.";
//
// closeButton
//
this.closeButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.closeButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.closeButton.Location = new System.Drawing.Point(303, 545);
this.closeButton.Name = "closeButton";
this.closeButton.Size = new System.Drawing.Size(75, 23);
this.closeButton.TabIndex = 5;
this.closeButton.Text = "Close";
this.closeButton.UseVisualStyleBackColor = true;
//
// startButton
//
this.startButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.startButton.DialogResult = System.Windows.Forms.DialogResult.OK;
this.startButton.Image = global::KeePassBrowserImporter.Properties.Resources.B16x16_Apply;
this.startButton.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.startButton.Location = new System.Drawing.Point(201, 545);
this.startButton.Name = "startButton";
this.startButton.Size = new System.Drawing.Size(96, 23);
this.startButton.TabIndex = 4;
this.startButton.Text = "Start";
this.startButton.UseVisualStyleBackColor = true;
//
// groupBox3
//
this.groupBox3.Controls.Add(this.groupComboBox);
this.groupBox3.Controls.Add(this.label5);
this.groupBox3.Location = new System.Drawing.Point(12, 348);
this.groupBox3.Name = "groupBox3";
this.groupBox3.Size = new System.Drawing.Size(366, 66);
this.groupBox3.TabIndex = 6;
this.groupBox3.TabStop = false;
this.groupBox3.Text = "KeePass";
//
// groupComboBox
//
this.groupComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.groupComboBox.FormattingEnabled = true;
this.groupComboBox.Location = new System.Drawing.Point(9, 36);
this.groupComboBox.Name = "groupComboBox";
this.groupComboBox.Size = new System.Drawing.Size(279, 21);
this.groupComboBox.TabIndex = 1;
//
// label5
//
this.label5.AutoSize = true;
this.label5.Location = new System.Drawing.Point(9, 16);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(277, 13);
this.label5.TabIndex = 0;
this.label5.Text = "Select the group in which the entries should get imported.";
//
// infoToolTip
//
this.infoToolTip.AutoPopDelay = 16000;
this.infoToolTip.InitialDelay = 200;
this.infoToolTip.ReshowDelay = 100;
//
// ProviderForm
//
this.AcceptButton = this.startButton;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.closeButton;
this.ClientSize = new System.Drawing.Size(389, 577);
this.Controls.Add(this.groupBox3);
this.Controls.Add(this.closeButton);
this.Controls.Add(this.startButton);
this.Controls.Add(this.groupBox2);
this.Controls.Add(this.masterPasswordGroupBox);
this.Controls.Add(this.profileGroupBox);
this.Controls.Add(this.groupBox1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
this.Name = "ProviderForm";
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "KeePassBrowserImporter";
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.chromiumIconBox)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.operaIconBox)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.chromeIconBox)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.internetExplorerIconBox)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.firefoxIconBox)).EndInit();
this.profileGroupBox.ResumeLayout(false);
this.profileGroupBox.PerformLayout();
this.masterPasswordGroupBox.ResumeLayout(false);
this.masterPasswordGroupBox.PerformLayout();
this.groupBox2.ResumeLayout(false);
this.groupBox2.PerformLayout();
this.groupBox3.ResumeLayout(false);
this.groupBox3.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.PictureBox firefoxIconBox;
private System.Windows.Forms.RadioButton firefoxRadioButton;
private System.Windows.Forms.PictureBox chromiumIconBox;
private System.Windows.Forms.RadioButton chromiumRadioButton;
private System.Windows.Forms.PictureBox operaIconBox;
private System.Windows.Forms.RadioButton operaRadioButton;
private System.Windows.Forms.PictureBox chromeIconBox;
private System.Windows.Forms.RadioButton chromeRadioButton;
private System.Windows.Forms.PictureBox internetExplorerIconBox;
private System.Windows.Forms.RadioButton internetExplorerRadioButton;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.GroupBox profileGroupBox;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.ComboBox profileComboBox;
private System.Windows.Forms.GroupBox masterPasswordGroupBox;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.TextBox masterPasswordTextBox;
private System.Windows.Forms.GroupBox groupBox2;
private System.Windows.Forms.CheckBox extractIconCheckBox;
private System.Windows.Forms.CheckBox extractTitleCheckBox;
private System.Windows.Forms.Label label4;
private System.Windows.Forms.Button startButton;
private System.Windows.Forms.Button closeButton;
private System.Windows.Forms.GroupBox groupBox3;
private System.Windows.Forms.ComboBox groupComboBox;
private System.Windows.Forms.Label label5;
private System.Windows.Forms.Button searchProfileButton;
private System.Windows.Forms.Label profilePathLabel;
private System.Windows.Forms.Label label6;
private System.Windows.Forms.ToolTip infoToolTip;
private System.Windows.Forms.CheckBox useDatesCheckBox;
}
}