forked from Walkman100/BasicBrowser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBasicBrowser.Designer.vb
More file actions
759 lines (754 loc) · 42.3 KB
/
BasicBrowser.Designer.vb
File metadata and controls
759 lines (754 loc) · 42.3 KB
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
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Partial Class BasicBrowser
Inherits System.Windows.Forms.Form
'Form overrides dispose to clean up the component list.
<System.Diagnostics.DebuggerNonUserCode()> _
Protected Overrides Sub Dispose(ByVal disposing As Boolean)
Try
If disposing AndAlso components IsNot Nothing Then
components.Dispose()
End If
Finally
MyBase.Dispose(disposing)
End Try
End Sub
'Required by the Windows Form Designer
Private components As System.ComponentModel.IContainer
'NOTE: The following procedure is required by the Windows Form Designer
'It can be modified using the Windows Form Designer.
'Do not modify it using the code editor.
<System.Diagnostics.DebuggerStepThrough()> _
Private Sub InitializeComponent()
Me.components = New System.ComponentModel.Container()
Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(BasicBrowser))
Me.TabControl = New System.Windows.Forms.TabControl()
Me.MenuStrip = New System.Windows.Forms.MenuStrip()
Me.MenuStripFile = New System.Windows.Forms.ToolStripMenuItem()
Me.MenuStripFileNew = New System.Windows.Forms.ToolStripMenuItem()
Me.MenuStripFileCloseTab = New System.Windows.Forms.ToolStripMenuItem()
Me.MenuStripFileSeparator1 = New System.Windows.Forms.ToolStripSeparator()
Me.MenuStripFileNewWindow = New System.Windows.Forms.ToolStripMenuItem()
Me.MenuStripFileCloseWindow = New System.Windows.Forms.ToolStripMenuItem()
Me.MenuStripFileSeparator2 = New System.Windows.Forms.ToolStripSeparator()
Me.MenuStripFileOpen = New System.Windows.Forms.ToolStripMenuItem()
Me.MenuStripFileSave = New System.Windows.Forms.ToolStripMenuItem()
Me.MenuStripFileSeparator3 = New System.Windows.Forms.ToolStripSeparator()
Me.MenuStripFilePrint = New System.Windows.Forms.ToolStripMenuItem()
Me.MenuStripFilePrintPreview = New System.Windows.Forms.ToolStripMenuItem()
Me.MenuStripFileSeparator4 = New System.Windows.Forms.ToolStripSeparator()
Me.MenuStripFileExit = New System.Windows.Forms.ToolStripMenuItem()
Me.MenuStripEdit = New System.Windows.Forms.ToolStripMenuItem()
Me.MenuStripEditUndo = New System.Windows.Forms.ToolStripMenuItem()
Me.MenuStripEditRedo = New System.Windows.Forms.ToolStripMenuItem()
Me.MenuStripEditSeparator1 = New System.Windows.Forms.ToolStripSeparator()
Me.MenuStripEditCut = New System.Windows.Forms.ToolStripMenuItem()
Me.MenuStripEditCopy = New System.Windows.Forms.ToolStripMenuItem()
Me.MenuStripEditPaste = New System.Windows.Forms.ToolStripMenuItem()
Me.MenuStripEditSeparator2 = New System.Windows.Forms.ToolStripSeparator()
Me.MenuStripEditSelectAll = New System.Windows.Forms.ToolStripMenuItem()
Me.MenuStripView = New System.Windows.Forms.ToolStripMenuItem()
Me.MenuStripViewKeepOnTop = New System.Windows.Forms.ToolStripMenuItem()
Me.MenuStripViewOpacityLbl = New System.Windows.Forms.ToolStripMenuItem()
Me.MenuStripViewOpacityCbx = New System.Windows.Forms.ToolStripComboBox()
Me.MenuStripViewSeparator = New System.Windows.Forms.ToolStripSeparator()
Me.MenuStripViewSource = New System.Windows.Forms.ToolStripMenuItem()
Me.MenuStripTools = New System.Windows.Forms.ToolStripMenuItem()
Me.MenuStripToolsSetup = New System.Windows.Forms.ToolStripMenuItem()
Me.MenuStripToolsProperties = New System.Windows.Forms.ToolStripMenuItem()
Me.MenuStripToolsSeperator = New System.Windows.Forms.ToolStripSeparator()
Me.MenuStripToolsInternetProperties = New System.Windows.Forms.ToolStripMenuItem()
Me.MenuStripToolsNetworkDiagnostics = New System.Windows.Forms.ToolStripMenuItem()
Me.MenuStripHelp = New System.Windows.Forms.ToolStripMenuItem()
Me.MenuStripHelpContents = New System.Windows.Forms.ToolStripMenuItem()
Me.MenuStripHelpIndex = New System.Windows.Forms.ToolStripMenuItem()
Me.MenuStripHelpSearch = New System.Windows.Forms.ToolStripMenuItem()
Me.MenuStripHelpSeparator = New System.Windows.Forms.ToolStripSeparator()
Me.MenuStripHelpAbout = New System.Windows.Forms.ToolStripMenuItem()
Me.ToolStripRemove = New System.Windows.Forms.ToolStripButton()
Me.ToolStripAdd = New System.Windows.Forms.ToolStripButton()
Me.StatusStrip = New System.Windows.Forms.StatusStrip()
Me.StatusStripProgressBar = New System.Windows.Forms.ToolStripProgressBar()
Me.StatusStripStatusText = New System.Windows.Forms.ToolStripStatusLabel()
Me.ToolStripSeparator1 = New System.Windows.Forms.ToolStripSeparator()
Me.ToolStripSeparator2 = New System.Windows.Forms.ToolStripSeparator()
Me.ToolStripNavigation = New System.Windows.Forms.ToolStrip()
Me.ToolStripBack = New System.Windows.Forms.ToolStripSplitButton()
Me.ToolStripForward = New System.Windows.Forms.ToolStripSplitButton()
Me.ToolStripReload = New System.Windows.Forms.ToolStripButton()
Me.ToolStripStop = New System.Windows.Forms.ToolStripButton()
Me.ToolStripHome = New System.Windows.Forms.ToolStripButton()
Me.ToolStripNewTab = New System.Windows.Forms.ToolStripButton()
Me.ToolStripCloseTab = New System.Windows.Forms.ToolStripButton()
Me.ToolStripURL = New System.Windows.Forms.ToolStripComboBox()
Me.ToolStripGo = New System.Windows.Forms.ToolStripButton()
Me.GeckoWebBrowser1 = New Skybound.Gecko.GeckoWebBrowser()
Me.WBContextMenu = New System.Windows.Forms.ContextMenuStrip(Me.components)
Me.WBContextMenuLinkNT = New System.Windows.Forms.ToolStripMenuItem()
Me.WBContextMenuLinkNW = New System.Windows.Forms.ToolStripMenuItem()
Me.WBContextMenuSaveLink = New System.Windows.Forms.ToolStripMenuItem()
Me.WBContextMenuCopyLinkAddr = New System.Windows.Forms.ToolStripMenuItem()
Me.WBContextMenuSeparator = New System.Windows.Forms.ToolStripSeparator()
Me.WBContextMenuSaveImg = New System.Windows.Forms.ToolStripMenuItem()
Me.WBContextMenuCopyImgURL = New System.Windows.Forms.ToolStripMenuItem()
Me.WBContextMenuCopyImg = New System.Windows.Forms.ToolStripMenuItem()
Me.WBContextMenuImgNT = New System.Windows.Forms.ToolStripMenuItem()
Me.MenuStripToolsInternetProxy = New System.Windows.Forms.ToolStripMenuItem()
Me.MenuStrip.SuspendLayout()
Me.StatusStrip.SuspendLayout()
Me.ToolStripNavigation.SuspendLayout()
Me.WBContextMenu.SuspendLayout()
Me.SuspendLayout()
'
'TabControl
'
Me.TabControl.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
Or System.Windows.Forms.AnchorStyles.Left) _
Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
Me.TabControl.Location = New System.Drawing.Point(0, 55)
Me.TabControl.Name = "TabControl"
Me.TabControl.SelectedIndex = 0
Me.TabControl.Size = New System.Drawing.Size(642, 301)
Me.TabControl.TabIndex = 0
'
'MenuStrip
'
Me.MenuStrip.AllowItemReorder = True
Me.MenuStrip.GripStyle = System.Windows.Forms.ToolStripGripStyle.Visible
Me.MenuStrip.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.MenuStripFile, Me.MenuStripEdit, Me.MenuStripView, Me.MenuStripTools, Me.MenuStripHelp, Me.ToolStripRemove, Me.ToolStripAdd})
Me.MenuStrip.Location = New System.Drawing.Point(0, 0)
Me.MenuStrip.Name = "MenuStrip"
Me.MenuStrip.RenderMode = System.Windows.Forms.ToolStripRenderMode.Professional
Me.MenuStrip.Size = New System.Drawing.Size(642, 27)
Me.MenuStrip.TabIndex = 1
Me.MenuStrip.Text = "MenuStrip"
'
'MenuStripFile
'
Me.MenuStripFile.DropDownItems.AddRange(New System.Windows.Forms.ToolStripItem() {Me.MenuStripFileNew, Me.MenuStripFileCloseTab, Me.MenuStripFileSeparator1, Me.MenuStripFileNewWindow, Me.MenuStripFileCloseWindow, Me.MenuStripFileSeparator2, Me.MenuStripFileOpen, Me.MenuStripFileSave, Me.MenuStripFileSeparator3, Me.MenuStripFilePrint, Me.MenuStripFilePrintPreview, Me.MenuStripFileSeparator4, Me.MenuStripFileExit})
Me.MenuStripFile.Name = "MenuStripFile"
Me.MenuStripFile.Size = New System.Drawing.Size(38, 23)
Me.MenuStripFile.Text = "&File"
'
'MenuStripFileNew
'
Me.MenuStripFileNew.Image = Global.BasicBrowser.My.Resources.Resources._1387146817_tab_new
Me.MenuStripFileNew.ImageTransparentColor = System.Drawing.Color.Magenta
Me.MenuStripFileNew.Name = "MenuStripFileNew"
Me.MenuStripFileNew.ShortcutKeys = CType((System.Windows.Forms.Keys.Control Or System.Windows.Forms.Keys.T), System.Windows.Forms.Keys)
Me.MenuStripFileNew.Size = New System.Drawing.Size(240, 22)
Me.MenuStripFileNew.Text = "&New Tab"
'
'MenuStripFileCloseTab
'
Me.MenuStripFileCloseTab.Enabled = False
Me.MenuStripFileCloseTab.Image = Global.BasicBrowser.My.Resources.Resources._1391271889_emblem_unreadable
Me.MenuStripFileCloseTab.ImageTransparentColor = System.Drawing.Color.Magenta
Me.MenuStripFileCloseTab.Name = "MenuStripFileCloseTab"
Me.MenuStripFileCloseTab.ShortcutKeys = CType((System.Windows.Forms.Keys.Control Or System.Windows.Forms.Keys.W), System.Windows.Forms.Keys)
Me.MenuStripFileCloseTab.Size = New System.Drawing.Size(240, 22)
Me.MenuStripFileCloseTab.Text = "&Close Tab"
'
'MenuStripFileSeparator1
'
Me.MenuStripFileSeparator1.Name = "MenuStripFileSeparator1"
Me.MenuStripFileSeparator1.Size = New System.Drawing.Size(237, 6)
'
'MenuStripFileNewWindow
'
Me.MenuStripFileNewWindow.Image = Global.BasicBrowser.My.Resources.Resources._1387139872_window_new
Me.MenuStripFileNewWindow.Name = "MenuStripFileNewWindow"
Me.MenuStripFileNewWindow.ShortcutKeys = CType((System.Windows.Forms.Keys.Control Or System.Windows.Forms.Keys.N), System.Windows.Forms.Keys)
Me.MenuStripFileNewWindow.Size = New System.Drawing.Size(240, 22)
Me.MenuStripFileNewWindow.Text = "New &Window"
'
'MenuStripFileCloseWindow
'
Me.MenuStripFileCloseWindow.Image = Global.BasicBrowser.My.Resources.Resources.Exit2
Me.MenuStripFileCloseWindow.Name = "MenuStripFileCloseWindow"
Me.MenuStripFileCloseWindow.ShortcutKeys = CType((System.Windows.Forms.Keys.Alt Or System.Windows.Forms.Keys.F4), System.Windows.Forms.Keys)
Me.MenuStripFileCloseWindow.Size = New System.Drawing.Size(240, 22)
Me.MenuStripFileCloseWindow.Text = "Close W&indow"
'
'MenuStripFileSeparator2
'
Me.MenuStripFileSeparator2.Name = "MenuStripFileSeparator2"
Me.MenuStripFileSeparator2.Size = New System.Drawing.Size(237, 6)
'
'MenuStripFileOpen
'
Me.MenuStripFileOpen.Enabled = False
Me.MenuStripFileOpen.Image = CType(resources.GetObject("MenuStripFileOpen.Image"), System.Drawing.Image)
Me.MenuStripFileOpen.ImageTransparentColor = System.Drawing.Color.Magenta
Me.MenuStripFileOpen.Name = "MenuStripFileOpen"
Me.MenuStripFileOpen.ShortcutKeys = CType((System.Windows.Forms.Keys.Control Or System.Windows.Forms.Keys.O), System.Windows.Forms.Keys)
Me.MenuStripFileOpen.Size = New System.Drawing.Size(240, 22)
Me.MenuStripFileOpen.Text = "&Open"
'
'MenuStripFileSave
'
Me.MenuStripFileSave.Enabled = False
Me.MenuStripFileSave.Image = CType(resources.GetObject("MenuStripFileSave.Image"), System.Drawing.Image)
Me.MenuStripFileSave.ImageTransparentColor = System.Drawing.Color.Magenta
Me.MenuStripFileSave.Name = "MenuStripFileSave"
Me.MenuStripFileSave.ShortcutKeys = CType((System.Windows.Forms.Keys.Control Or System.Windows.Forms.Keys.S), System.Windows.Forms.Keys)
Me.MenuStripFileSave.Size = New System.Drawing.Size(240, 22)
Me.MenuStripFileSave.Text = "&Save As..."
'
'MenuStripFileSeparator3
'
Me.MenuStripFileSeparator3.Name = "MenuStripFileSeparator3"
Me.MenuStripFileSeparator3.Size = New System.Drawing.Size(237, 6)
'
'MenuStripFilePrint
'
Me.MenuStripFilePrint.Enabled = False
Me.MenuStripFilePrint.Image = CType(resources.GetObject("MenuStripFilePrint.Image"), System.Drawing.Image)
Me.MenuStripFilePrint.ImageTransparentColor = System.Drawing.Color.Magenta
Me.MenuStripFilePrint.Name = "MenuStripFilePrint"
Me.MenuStripFilePrint.ShortcutKeys = CType((System.Windows.Forms.Keys.Control Or System.Windows.Forms.Keys.P), System.Windows.Forms.Keys)
Me.MenuStripFilePrint.Size = New System.Drawing.Size(240, 22)
Me.MenuStripFilePrint.Text = "&Print..."
'
'MenuStripFilePrintPreview
'
Me.MenuStripFilePrintPreview.Enabled = False
Me.MenuStripFilePrintPreview.Image = CType(resources.GetObject("MenuStripFilePrintPreview.Image"), System.Drawing.Image)
Me.MenuStripFilePrintPreview.ImageTransparentColor = System.Drawing.Color.Magenta
Me.MenuStripFilePrintPreview.Name = "MenuStripFilePrintPreview"
Me.MenuStripFilePrintPreview.ShortcutKeys = CType(((System.Windows.Forms.Keys.Control Or System.Windows.Forms.Keys.Shift) _
Or System.Windows.Forms.Keys.P), System.Windows.Forms.Keys)
Me.MenuStripFilePrintPreview.Size = New System.Drawing.Size(240, 22)
Me.MenuStripFilePrintPreview.Text = "Print Pre&view..."
'
'MenuStripFileSeparator4
'
Me.MenuStripFileSeparator4.Name = "MenuStripFileSeparator4"
Me.MenuStripFileSeparator4.Size = New System.Drawing.Size(237, 6)
'
'MenuStripFileExit
'
Me.MenuStripFileExit.Image = Global.BasicBrowser.My.Resources.Resources._16x16_quit
Me.MenuStripFileExit.Name = "MenuStripFileExit"
Me.MenuStripFileExit.ShortcutKeys = CType((System.Windows.Forms.Keys.Control Or System.Windows.Forms.Keys.Q), System.Windows.Forms.Keys)
Me.MenuStripFileExit.Size = New System.Drawing.Size(240, 22)
Me.MenuStripFileExit.Text = "E&xit"
'
'MenuStripEdit
'
Me.MenuStripEdit.DropDownItems.AddRange(New System.Windows.Forms.ToolStripItem() {Me.MenuStripEditUndo, Me.MenuStripEditRedo, Me.MenuStripEditSeparator1, Me.MenuStripEditCut, Me.MenuStripEditCopy, Me.MenuStripEditPaste, Me.MenuStripEditSeparator2, Me.MenuStripEditSelectAll})
Me.MenuStripEdit.Name = "MenuStripEdit"
Me.MenuStripEdit.Size = New System.Drawing.Size(40, 23)
Me.MenuStripEdit.Text = "&Edit"
'
'MenuStripEditUndo
'
Me.MenuStripEditUndo.Name = "MenuStripEditUndo"
Me.MenuStripEditUndo.ShortcutKeys = CType((System.Windows.Forms.Keys.Control Or System.Windows.Forms.Keys.Z), System.Windows.Forms.Keys)
Me.MenuStripEditUndo.Size = New System.Drawing.Size(172, 22)
Me.MenuStripEditUndo.Text = "&Undo"
'
'MenuStripEditRedo
'
Me.MenuStripEditRedo.Name = "MenuStripEditRedo"
Me.MenuStripEditRedo.ShortcutKeys = CType((System.Windows.Forms.Keys.Control Or System.Windows.Forms.Keys.Y), System.Windows.Forms.Keys)
Me.MenuStripEditRedo.Size = New System.Drawing.Size(172, 22)
Me.MenuStripEditRedo.Text = "&Redo"
'
'MenuStripEditSeparator1
'
Me.MenuStripEditSeparator1.Name = "MenuStripEditSeparator1"
Me.MenuStripEditSeparator1.Size = New System.Drawing.Size(169, 6)
'
'MenuStripEditCut
'
Me.MenuStripEditCut.Image = CType(resources.GetObject("MenuStripEditCut.Image"), System.Drawing.Image)
Me.MenuStripEditCut.ImageTransparentColor = System.Drawing.Color.Magenta
Me.MenuStripEditCut.Name = "MenuStripEditCut"
Me.MenuStripEditCut.ShortcutKeys = CType((System.Windows.Forms.Keys.Control Or System.Windows.Forms.Keys.X), System.Windows.Forms.Keys)
Me.MenuStripEditCut.Size = New System.Drawing.Size(172, 22)
Me.MenuStripEditCut.Text = "Cu&t"
'
'MenuStripEditCopy
'
Me.MenuStripEditCopy.Image = CType(resources.GetObject("MenuStripEditCopy.Image"), System.Drawing.Image)
Me.MenuStripEditCopy.ImageTransparentColor = System.Drawing.Color.Magenta
Me.MenuStripEditCopy.Name = "MenuStripEditCopy"
Me.MenuStripEditCopy.ShortcutKeys = CType((System.Windows.Forms.Keys.Control Or System.Windows.Forms.Keys.C), System.Windows.Forms.Keys)
Me.MenuStripEditCopy.Size = New System.Drawing.Size(172, 22)
Me.MenuStripEditCopy.Text = "&Copy"
'
'MenuStripEditPaste
'
Me.MenuStripEditPaste.Image = CType(resources.GetObject("MenuStripEditPaste.Image"), System.Drawing.Image)
Me.MenuStripEditPaste.ImageTransparentColor = System.Drawing.Color.Magenta
Me.MenuStripEditPaste.Name = "MenuStripEditPaste"
Me.MenuStripEditPaste.ShortcutKeys = CType((System.Windows.Forms.Keys.Control Or System.Windows.Forms.Keys.V), System.Windows.Forms.Keys)
Me.MenuStripEditPaste.Size = New System.Drawing.Size(172, 22)
Me.MenuStripEditPaste.Text = "&Paste"
'
'MenuStripEditSeparator2
'
Me.MenuStripEditSeparator2.Name = "MenuStripEditSeparator2"
Me.MenuStripEditSeparator2.Size = New System.Drawing.Size(169, 6)
'
'MenuStripEditSelectAll
'
Me.MenuStripEditSelectAll.Name = "MenuStripEditSelectAll"
Me.MenuStripEditSelectAll.ShortcutKeys = CType((System.Windows.Forms.Keys.Control Or System.Windows.Forms.Keys.A), System.Windows.Forms.Keys)
Me.MenuStripEditSelectAll.Size = New System.Drawing.Size(172, 22)
Me.MenuStripEditSelectAll.Text = "Select &All"
'
'MenuStripView
'
Me.MenuStripView.DropDownItems.AddRange(New System.Windows.Forms.ToolStripItem() {Me.MenuStripViewKeepOnTop, Me.MenuStripViewOpacityLbl, Me.MenuStripViewSeparator, Me.MenuStripViewSource})
Me.MenuStripView.Name = "MenuStripView"
Me.MenuStripView.Size = New System.Drawing.Size(46, 23)
Me.MenuStripView.Text = "&View"
'
'MenuStripViewKeepOnTop
'
Me.MenuStripViewKeepOnTop.AutoToolTip = True
Me.MenuStripViewKeepOnTop.CheckOnClick = True
Me.MenuStripViewKeepOnTop.Name = "MenuStripViewKeepOnTop"
Me.MenuStripViewKeepOnTop.Size = New System.Drawing.Size(189, 22)
Me.MenuStripViewKeepOnTop.Text = "Keep window on top"
'
'MenuStripViewOpacityLbl
'
Me.MenuStripViewOpacityLbl.AutoToolTip = True
Me.MenuStripViewOpacityLbl.DropDownItems.AddRange(New System.Windows.Forms.ToolStripItem() {Me.MenuStripViewOpacityCbx})
Me.MenuStripViewOpacityLbl.Name = "MenuStripViewOpacityLbl"
Me.MenuStripViewOpacityLbl.Size = New System.Drawing.Size(189, 22)
Me.MenuStripViewOpacityLbl.Text = "Set Opacity >>"
'
'MenuStripViewOpacityCbx
'
Me.MenuStripViewOpacityCbx.Items.AddRange(New Object() {"10%", "20%", "30%", "40%", "50%", "60%", "70%", "80%", "90%", "100%"})
Me.MenuStripViewOpacityCbx.MaxDropDownItems = 20
Me.MenuStripViewOpacityCbx.Name = "MenuStripViewOpacityCbx"
Me.MenuStripViewOpacityCbx.Size = New System.Drawing.Size(121, 21)
Me.MenuStripViewOpacityCbx.Text = "100%"
'
'MenuStripViewSeparator
'
Me.MenuStripViewSeparator.Name = "MenuStripViewSeparator"
Me.MenuStripViewSeparator.Size = New System.Drawing.Size(186, 6)
'
'MenuStripViewSource
'
Me.MenuStripViewSource.Enabled = False
Me.MenuStripViewSource.Image = Global.BasicBrowser.My.Resources.Resources.SourceCodeIconBitmap
Me.MenuStripViewSource.Name = "MenuStripViewSource"
Me.MenuStripViewSource.ShortcutKeys = CType((System.Windows.Forms.Keys.Control Or System.Windows.Forms.Keys.U), System.Windows.Forms.Keys)
Me.MenuStripViewSource.Size = New System.Drawing.Size(189, 22)
Me.MenuStripViewSource.Text = "Source..."
'
'MenuStripTools
'
Me.MenuStripTools.DropDownItems.AddRange(New System.Windows.Forms.ToolStripItem() {Me.MenuStripToolsSetup, Me.MenuStripToolsProperties, Me.MenuStripToolsSeperator, Me.MenuStripToolsInternetProperties, Me.MenuStripToolsNetworkDiagnostics})
Me.MenuStripTools.Name = "MenuStripTools"
Me.MenuStripTools.Size = New System.Drawing.Size(49, 23)
Me.MenuStripTools.Text = "&Tools"
'
'MenuStripToolsSetup
'
Me.MenuStripToolsSetup.Name = "MenuStripToolsSetup"
Me.MenuStripToolsSetup.ShortcutKeys = CType((System.Windows.Forms.Keys.Alt Or System.Windows.Forms.Keys.S), System.Windows.Forms.Keys)
Me.MenuStripToolsSetup.Size = New System.Drawing.Size(222, 22)
Me.MenuStripToolsSetup.Text = "GeckoFX &Options..."
'
'MenuStripToolsProperties
'
Me.MenuStripToolsProperties.Enabled = False
Me.MenuStripToolsProperties.Name = "MenuStripToolsProperties"
Me.MenuStripToolsProperties.ShortcutKeys = CType((System.Windows.Forms.Keys.Alt Or System.Windows.Forms.Keys.P), System.Windows.Forms.Keys)
Me.MenuStripToolsProperties.Size = New System.Drawing.Size(222, 22)
Me.MenuStripToolsProperties.Text = "Page P&roperties..."
'
'MenuStripToolsSeperator
'
Me.MenuStripToolsSeperator.Name = "MenuStripToolsSeperator"
Me.MenuStripToolsSeperator.Size = New System.Drawing.Size(219, 6)
'
'MenuStripToolsInternetProperties
'
Me.MenuStripToolsInternetProperties.DropDownItems.AddRange(New System.Windows.Forms.ToolStripItem() {Me.MenuStripToolsInternetProxy})
Me.MenuStripToolsInternetProperties.Name = "MenuStripToolsInternetProperties"
Me.MenuStripToolsInternetProperties.Size = New System.Drawing.Size(222, 22)
Me.MenuStripToolsInternetProperties.Text = "Internet Properties..."
'
'MenuStripToolsNetworkDiagnostics
'
Me.MenuStripToolsNetworkDiagnostics.Name = "MenuStripToolsNetworkDiagnostics"
Me.MenuStripToolsNetworkDiagnostics.Size = New System.Drawing.Size(222, 22)
Me.MenuStripToolsNetworkDiagnostics.Text = "Network Diagnostics..."
'
'MenuStripHelp
'
Me.MenuStripHelp.DropDownItems.AddRange(New System.Windows.Forms.ToolStripItem() {Me.MenuStripHelpContents, Me.MenuStripHelpIndex, Me.MenuStripHelpSearch, Me.MenuStripHelpSeparator, Me.MenuStripHelpAbout})
Me.MenuStripHelp.Name = "MenuStripHelp"
Me.MenuStripHelp.Size = New System.Drawing.Size(44, 23)
Me.MenuStripHelp.Text = "&Help"
'
'MenuStripHelpContents
'
Me.MenuStripHelpContents.Name = "MenuStripHelpContents"
Me.MenuStripHelpContents.Size = New System.Drawing.Size(125, 22)
Me.MenuStripHelpContents.Text = "&Contents"
Me.MenuStripHelpContents.Visible = False
'
'MenuStripHelpIndex
'
Me.MenuStripHelpIndex.Name = "MenuStripHelpIndex"
Me.MenuStripHelpIndex.Size = New System.Drawing.Size(125, 22)
Me.MenuStripHelpIndex.Text = "&Index"
Me.MenuStripHelpIndex.Visible = False
'
'MenuStripHelpSearch
'
Me.MenuStripHelpSearch.Name = "MenuStripHelpSearch"
Me.MenuStripHelpSearch.Size = New System.Drawing.Size(125, 22)
Me.MenuStripHelpSearch.Text = "&Search"
Me.MenuStripHelpSearch.Visible = False
'
'MenuStripHelpSeparator
'
Me.MenuStripHelpSeparator.Name = "MenuStripHelpSeparator"
Me.MenuStripHelpSeparator.Size = New System.Drawing.Size(122, 6)
Me.MenuStripHelpSeparator.Visible = False
'
'MenuStripHelpAbout
'
Me.MenuStripHelpAbout.Image = Global.BasicBrowser.My.Resources.Resources.Info
Me.MenuStripHelpAbout.Name = "MenuStripHelpAbout"
Me.MenuStripHelpAbout.Size = New System.Drawing.Size(125, 22)
Me.MenuStripHelpAbout.Text = "&About..."
'
'ToolStripRemove
'
Me.ToolStripRemove.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right
Me.ToolStripRemove.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
Me.ToolStripRemove.Enabled = False
Me.ToolStripRemove.Image = Global.BasicBrowser.My.Resources.Resources._16x16_bookmark_remove
Me.ToolStripRemove.ImageTransparentColor = System.Drawing.Color.Magenta
Me.ToolStripRemove.Name = "ToolStripRemove"
Me.ToolStripRemove.Size = New System.Drawing.Size(23, 20)
Me.ToolStripRemove.Text = "Remove Favourite"
'
'ToolStripAdd
'
Me.ToolStripAdd.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right
Me.ToolStripAdd.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
Me.ToolStripAdd.Enabled = False
Me.ToolStripAdd.Image = Global.BasicBrowser.My.Resources.Resources._16x16_bookmark_add
Me.ToolStripAdd.ImageTransparentColor = System.Drawing.Color.Magenta
Me.ToolStripAdd.Name = "ToolStripAdd"
Me.ToolStripAdd.Size = New System.Drawing.Size(23, 20)
Me.ToolStripAdd.Text = "Add Favourite"
'
'StatusStrip
'
Me.StatusStrip.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.StatusStripProgressBar, Me.StatusStripStatusText})
Me.StatusStrip.Location = New System.Drawing.Point(0, 359)
Me.StatusStrip.Name = "StatusStrip"
Me.StatusStrip.Size = New System.Drawing.Size(642, 22)
Me.StatusStrip.TabIndex = 3
Me.StatusStrip.Text = "StatusStrip"
'
'StatusStripProgressBar
'
Me.StatusStripProgressBar.Name = "StatusStripProgressBar"
Me.StatusStripProgressBar.Size = New System.Drawing.Size(100, 16)
Me.StatusStripProgressBar.Value = 1
'
'StatusStripStatusText
'
Me.StatusStripStatusText.Name = "StatusStripStatusText"
Me.StatusStripStatusText.Size = New System.Drawing.Size(43, 17)
Me.StatusStripStatusText.Text = "Status"
'
'ToolStripSeparator1
'
Me.ToolStripSeparator1.Name = "ToolStripSeparator1"
Me.ToolStripSeparator1.Size = New System.Drawing.Size(6, 25)
'
'ToolStripSeparator2
'
Me.ToolStripSeparator2.Name = "ToolStripSeparator2"
Me.ToolStripSeparator2.Size = New System.Drawing.Size(6, 25)
'
'ToolStripNavigation
'
Me.ToolStripNavigation.AllowItemReorder = True
Me.ToolStripNavigation.CanOverflow = False
Me.ToolStripNavigation.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.ToolStripBack, Me.ToolStripForward, Me.ToolStripReload, Me.ToolStripStop, Me.ToolStripHome, Me.ToolStripSeparator1, Me.ToolStripNewTab, Me.ToolStripCloseTab, Me.ToolStripSeparator2, Me.ToolStripURL, Me.ToolStripGo})
Me.ToolStripNavigation.LayoutStyle = System.Windows.Forms.ToolStripLayoutStyle.HorizontalStackWithOverflow
Me.ToolStripNavigation.Location = New System.Drawing.Point(0, 27)
Me.ToolStripNavigation.Name = "ToolStripNavigation"
Me.ToolStripNavigation.Size = New System.Drawing.Size(642, 25)
Me.ToolStripNavigation.Stretch = True
Me.ToolStripNavigation.TabIndex = 4
Me.ToolStripNavigation.Text = "ToolStripNavigation"
'
'ToolStripBack
'
Me.ToolStripBack.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
Me.ToolStripBack.Enabled = False
Me.ToolStripBack.Image = Global.BasicBrowser.My.Resources.Resources._1391274420_go_previous
Me.ToolStripBack.ImageTransparentColor = System.Drawing.Color.Magenta
Me.ToolStripBack.Name = "ToolStripBack"
Me.ToolStripBack.Size = New System.Drawing.Size(32, 22)
Me.ToolStripBack.Text = "&Back"
'
'ToolStripForward
'
Me.ToolStripForward.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
Me.ToolStripForward.Enabled = False
Me.ToolStripForward.Image = Global.BasicBrowser.My.Resources.Resources._1391274345_go_next
Me.ToolStripForward.ImageTransparentColor = System.Drawing.Color.Magenta
Me.ToolStripForward.Name = "ToolStripForward"
Me.ToolStripForward.Size = New System.Drawing.Size(32, 22)
Me.ToolStripForward.Text = "&Forward"
'
'ToolStripReload
'
Me.ToolStripReload.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
Me.ToolStripReload.Enabled = False
Me.ToolStripReload.Image = Global.BasicBrowser.My.Resources.Resources._1391271803_view_refresh
Me.ToolStripReload.ImageTransparentColor = System.Drawing.Color.Magenta
Me.ToolStripReload.Name = "ToolStripReload"
Me.ToolStripReload.Size = New System.Drawing.Size(23, 22)
Me.ToolStripReload.Text = "&Reload"
'
'ToolStripStop
'
Me.ToolStripStop.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
Me.ToolStripStop.Enabled = False
Me.ToolStripStop.Image = Global.BasicBrowser.My.Resources.Resources._1387140136_process_stop
Me.ToolStripStop.ImageTransparentColor = System.Drawing.Color.Magenta
Me.ToolStripStop.Name = "ToolStripStop"
Me.ToolStripStop.Size = New System.Drawing.Size(23, 22)
Me.ToolStripStop.Text = "&Stop"
'
'ToolStripHome
'
Me.ToolStripHome.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
Me.ToolStripHome.Enabled = False
Me.ToolStripHome.Image = Global.BasicBrowser.My.Resources.Resources._1371833355_go_home
Me.ToolStripHome.ImageTransparentColor = System.Drawing.Color.Magenta
Me.ToolStripHome.Name = "ToolStripHome"
Me.ToolStripHome.Size = New System.Drawing.Size(23, 22)
Me.ToolStripHome.Text = "&Home"
'
'ToolStripNewTab
'
Me.ToolStripNewTab.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
Me.ToolStripNewTab.Image = Global.BasicBrowser.My.Resources.Resources._1387146817_tab_new
Me.ToolStripNewTab.ImageTransparentColor = System.Drawing.Color.Magenta
Me.ToolStripNewTab.Name = "ToolStripNewTab"
Me.ToolStripNewTab.Size = New System.Drawing.Size(23, 22)
Me.ToolStripNewTab.Text = "New Tab"
'
'ToolStripCloseTab
'
Me.ToolStripCloseTab.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
Me.ToolStripCloseTab.Enabled = False
Me.ToolStripCloseTab.Image = Global.BasicBrowser.My.Resources.Resources._1391271889_emblem_unreadable
Me.ToolStripCloseTab.ImageTransparentColor = System.Drawing.Color.Magenta
Me.ToolStripCloseTab.Name = "ToolStripCloseTab"
Me.ToolStripCloseTab.Size = New System.Drawing.Size(23, 22)
Me.ToolStripCloseTab.Text = "Close Tab"
'
'ToolStripURL
'
Me.ToolStripURL.Name = "ToolStripURL"
Me.ToolStripURL.Size = New System.Drawing.Size(415, 25)
Me.ToolStripURL.ToolTipText = "Enter URL to navigate to"
'
'ToolStripGo
'
Me.ToolStripGo.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right
Me.ToolStripGo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
Me.ToolStripGo.Image = Global.BasicBrowser.My.Resources.Resources.go_right_d
Me.ToolStripGo.ImageTransparentColor = System.Drawing.Color.Magenta
Me.ToolStripGo.Name = "ToolStripGo"
Me.ToolStripGo.Size = New System.Drawing.Size(23, 22)
Me.ToolStripGo.Text = "Go >>"
Me.ToolStripGo.ToolTipText = "Go >"
'
'GeckoWebBrowser1
'
Me.GeckoWebBrowser1.AllowDrop = True
Me.GeckoWebBrowser1.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
Me.GeckoWebBrowser1.ContextMenuStrip = Me.WBContextMenu
Me.GeckoWebBrowser1.Location = New System.Drawing.Point(231, 1)
Me.GeckoWebBrowser1.Name = "GeckoWebBrowser1"
Me.GeckoWebBrowser1.Size = New System.Drawing.Size(352, 23)
Me.GeckoWebBrowser1.TabIndex = 5
'
'WBContextMenu
'
Me.WBContextMenu.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.WBContextMenuLinkNT, Me.WBContextMenuLinkNW, Me.WBContextMenuSaveLink, Me.WBContextMenuCopyLinkAddr, Me.WBContextMenuSeparator, Me.WBContextMenuSaveImg, Me.WBContextMenuCopyImgURL, Me.WBContextMenuCopyImg, Me.WBContextMenuImgNT})
Me.WBContextMenu.Name = "WBContextMenu"
Me.WBContextMenu.Size = New System.Drawing.Size(216, 186)
'
'WBContextMenuLinkNT
'
Me.WBContextMenuLinkNT.Name = "WBContextMenuLinkNT"
Me.WBContextMenuLinkNT.Size = New System.Drawing.Size(215, 22)
Me.WBContextMenuLinkNT.Text = "Open link in new tab"
'
'WBContextMenuLinkNW
'
Me.WBContextMenuLinkNW.Name = "WBContextMenuLinkNW"
Me.WBContextMenuLinkNW.Size = New System.Drawing.Size(215, 22)
Me.WBContextMenuLinkNW.Text = "Open link in new window"
'
'WBContextMenuSaveLink
'
Me.WBContextMenuSaveLink.Name = "WBContextMenuSaveLink"
Me.WBContextMenuSaveLink.Size = New System.Drawing.Size(215, 22)
Me.WBContextMenuSaveLink.Text = "Save link as"
'
'WBContextMenuCopyLinkAddr
'
Me.WBContextMenuCopyLinkAddr.Name = "WBContextMenuCopyLinkAddr"
Me.WBContextMenuCopyLinkAddr.Size = New System.Drawing.Size(215, 22)
Me.WBContextMenuCopyLinkAddr.Text = "Copy link address"
'
'WBContextMenuSeparator
'
Me.WBContextMenuSeparator.Name = "WBContextMenuSeparator"
Me.WBContextMenuSeparator.Size = New System.Drawing.Size(212, 6)
'
'WBContextMenuSaveImg
'
Me.WBContextMenuSaveImg.Name = "WBContextMenuSaveImg"
Me.WBContextMenuSaveImg.Size = New System.Drawing.Size(215, 22)
Me.WBContextMenuSaveImg.Text = "Save image as..."
'
'WBContextMenuCopyImgURL
'
Me.WBContextMenuCopyImgURL.Name = "WBContextMenuCopyImgURL"
Me.WBContextMenuCopyImgURL.Size = New System.Drawing.Size(215, 22)
Me.WBContextMenuCopyImgURL.Text = "Copy image URL"
'
'WBContextMenuCopyImg
'
Me.WBContextMenuCopyImg.Name = "WBContextMenuCopyImg"
Me.WBContextMenuCopyImg.Size = New System.Drawing.Size(215, 22)
Me.WBContextMenuCopyImg.Text = "Copy image"
'
'WBContextMenuImgNT
'
Me.WBContextMenuImgNT.Name = "WBContextMenuImgNT"
Me.WBContextMenuImgNT.Size = New System.Drawing.Size(215, 22)
Me.WBContextMenuImgNT.Text = "Open image in new tab"
'
'MenuStripToolsInternetProxy
'
Me.MenuStripToolsInternetProxy.Name = "MenuStripToolsInternetProxy"
Me.MenuStripToolsInternetProxy.Size = New System.Drawing.Size(323, 22)
Me.MenuStripToolsInternetProxy.Text = "Proxy settings... (Click LAN settings button)"
'
'BasicBrowser
'
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.ClientSize = New System.Drawing.Size(642, 381)
Me.Controls.Add(Me.GeckoWebBrowser1)
Me.Controls.Add(Me.ToolStripNavigation)
Me.Controls.Add(Me.StatusStrip)
Me.Controls.Add(Me.TabControl)
Me.Controls.Add(Me.MenuStrip)
Me.HelpButton = True
Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon)
Me.MainMenuStrip = Me.MenuStrip
Me.Name = "BasicBrowser"
Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen
Me.Text = "BasicBrowser"
Me.WindowState = System.Windows.Forms.FormWindowState.Maximized
Me.MenuStrip.ResumeLayout(False)
Me.MenuStrip.PerformLayout()
Me.StatusStrip.ResumeLayout(False)
Me.StatusStrip.PerformLayout()
Me.ToolStripNavigation.ResumeLayout(False)
Me.ToolStripNavigation.PerformLayout()
Me.WBContextMenu.ResumeLayout(False)
Me.ResumeLayout(False)
Me.PerformLayout()
End Sub
Friend WithEvents TabControl As System.Windows.Forms.TabControl
Friend WithEvents MenuStrip As System.Windows.Forms.MenuStrip
Friend WithEvents MenuStripFile As System.Windows.Forms.ToolStripMenuItem
Friend WithEvents MenuStripFileNew As System.Windows.Forms.ToolStripMenuItem
Friend WithEvents MenuStripFileCloseTab As System.Windows.Forms.ToolStripMenuItem
Friend WithEvents MenuStripFileSeparator1 As System.Windows.Forms.ToolStripSeparator
Friend WithEvents MenuStripFileSave As System.Windows.Forms.ToolStripMenuItem
Friend WithEvents MenuStripFileSeparator2 As System.Windows.Forms.ToolStripSeparator
Friend WithEvents MenuStripFilePrint As System.Windows.Forms.ToolStripMenuItem
Friend WithEvents MenuStripFilePrintPreview As System.Windows.Forms.ToolStripMenuItem
Friend WithEvents MenuStripFileSeparator3 As System.Windows.Forms.ToolStripSeparator
Friend WithEvents MenuStripFileExit As System.Windows.Forms.ToolStripMenuItem
Friend WithEvents MenuStripEdit As System.Windows.Forms.ToolStripMenuItem
Friend WithEvents MenuStripEditUndo As System.Windows.Forms.ToolStripMenuItem
Friend WithEvents MenuStripEditRedo As System.Windows.Forms.ToolStripMenuItem
Friend WithEvents MenuStripEditSeparator1 As System.Windows.Forms.ToolStripSeparator
Friend WithEvents MenuStripEditCut As System.Windows.Forms.ToolStripMenuItem
Friend WithEvents MenuStripEditCopy As System.Windows.Forms.ToolStripMenuItem
Friend WithEvents MenuStripEditPaste As System.Windows.Forms.ToolStripMenuItem
Friend WithEvents MenuStripEditSeparator2 As System.Windows.Forms.ToolStripSeparator
Friend WithEvents MenuStripEditSelectAll As System.Windows.Forms.ToolStripMenuItem
Friend WithEvents MenuStripTools As System.Windows.Forms.ToolStripMenuItem
Friend WithEvents MenuStripToolsSetup As System.Windows.Forms.ToolStripMenuItem
Friend WithEvents MenuStripToolsProperties As System.Windows.Forms.ToolStripMenuItem
Friend WithEvents MenuStripHelp As System.Windows.Forms.ToolStripMenuItem
Friend WithEvents MenuStripHelpContents As System.Windows.Forms.ToolStripMenuItem
Friend WithEvents MenuStripHelpIndex As System.Windows.Forms.ToolStripMenuItem
Friend WithEvents MenuStripHelpSearch As System.Windows.Forms.ToolStripMenuItem
Friend WithEvents MenuStripHelpSeparator As System.Windows.Forms.ToolStripSeparator
Friend WithEvents MenuStripHelpAbout As System.Windows.Forms.ToolStripMenuItem
Friend WithEvents StatusStrip As System.Windows.Forms.StatusStrip
Friend WithEvents ToolStripSeparator1 As System.Windows.Forms.ToolStripSeparator
Friend WithEvents ToolStripSeparator2 As System.Windows.Forms.ToolStripSeparator
Friend WithEvents ToolStripBack As System.Windows.Forms.ToolStripSplitButton
Friend WithEvents ToolStripForward As System.Windows.Forms.ToolStripSplitButton
Friend WithEvents ToolStripReload As System.Windows.Forms.ToolStripButton
Friend WithEvents ToolStripStop As System.Windows.Forms.ToolStripButton
Friend WithEvents ToolStripHome As System.Windows.Forms.ToolStripButton
Friend WithEvents ToolStripNavigation As System.Windows.Forms.ToolStrip
Friend WithEvents ToolStripNewTab As System.Windows.Forms.ToolStripButton
Friend WithEvents ToolStripCloseTab As System.Windows.Forms.ToolStripButton
Friend WithEvents StatusStripProgressBar As System.Windows.Forms.ToolStripProgressBar
Friend WithEvents StatusStripStatusText As System.Windows.Forms.ToolStripStatusLabel
Friend WithEvents ToolStripGo As System.Windows.Forms.ToolStripButton
Friend WithEvents MenuStripViewKeepOnTop As System.Windows.Forms.ToolStripMenuItem
Friend WithEvents MenuStripViewOpacityLbl As System.Windows.Forms.ToolStripMenuItem
Friend WithEvents MenuStripViewOpacityCbx As System.Windows.Forms.ToolStripComboBox
Friend WithEvents MenuStripView As System.Windows.Forms.ToolStripMenuItem
Friend WithEvents MenuStripFileOpen As System.Windows.Forms.ToolStripMenuItem
Friend WithEvents MenuStripViewSource As System.Windows.Forms.ToolStripMenuItem
Friend WithEvents MenuStripViewSeparator As System.Windows.Forms.ToolStripSeparator
Friend WithEvents ToolStripAdd As System.Windows.Forms.ToolStripButton
Friend WithEvents ToolStripRemove As System.Windows.Forms.ToolStripButton
Friend WithEvents MenuStripFileNewWindow As System.Windows.Forms.ToolStripMenuItem
Friend WithEvents MenuStripFileCloseWindow As System.Windows.Forms.ToolStripMenuItem
Friend WithEvents ToolStripURL As System.Windows.Forms.ToolStripComboBox
Friend WithEvents GeckoWebBrowser1 As Skybound.Gecko.GeckoWebBrowser
Friend WithEvents WBContextMenu As System.Windows.Forms.ContextMenuStrip
Friend WithEvents WBContextMenuLinkNT As System.Windows.Forms.ToolStripMenuItem
Friend WithEvents WBContextMenuLinkNW As System.Windows.Forms.ToolStripMenuItem
Friend WithEvents WBContextMenuSaveLink As System.Windows.Forms.ToolStripMenuItem
Friend WithEvents WBContextMenuCopyLinkAddr As System.Windows.Forms.ToolStripMenuItem
Friend WithEvents WBContextMenuSeparator As System.Windows.Forms.ToolStripSeparator
Friend WithEvents WBContextMenuSaveImg As System.Windows.Forms.ToolStripMenuItem
Friend WithEvents WBContextMenuCopyImgURL As System.Windows.Forms.ToolStripMenuItem
Friend WithEvents WBContextMenuCopyImg As System.Windows.Forms.ToolStripMenuItem
Friend WithEvents WBContextMenuImgNT As System.Windows.Forms.ToolStripMenuItem
Friend WithEvents MenuStripFileSeparator4 As System.Windows.Forms.ToolStripSeparator
Friend WithEvents MenuStripToolsSeperator As System.Windows.Forms.ToolStripSeparator
Friend WithEvents MenuStripToolsInternetProperties As System.Windows.Forms.ToolStripMenuItem
Friend WithEvents MenuStripToolsNetworkDiagnostics As System.Windows.Forms.ToolStripMenuItem
Friend WithEvents MenuStripToolsInternetProxy As System.Windows.Forms.ToolStripMenuItem
End Class