-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathMain.Designer.vb
161 lines (156 loc) · 6.27 KB
/
Main.Designer.vb
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
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Partial Class Main
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(Main))
Me.Img = New System.Windows.Forms.ImageList(Me.components)
Me.Mnu = New System.Windows.Forms.MainMenu(Me.components)
Me.FileMnu = New System.Windows.Forms.MenuItem
Me.OpenFolder = New System.Windows.Forms.MenuItem
Me.Extract = New System.Windows.Forms.MenuItem
Me.FileSep = New System.Windows.Forms.MenuItem
Me.ExitApplication = New System.Windows.Forms.MenuItem
Me.ViewMnu = New System.Windows.Forms.MenuItem
Me.Filenames = New System.Windows.Forms.MenuItem
Me.HelpMnu = New System.Windows.Forms.MenuItem
Me.About = New System.Windows.Forms.MenuItem
Me.Browser = New System.Windows.Forms.FolderBrowserDialog
Me.List = New System.Windows.Forms.ListView
Me.Context = New System.Windows.Forms.ContextMenu
Me.CopyCon = New System.Windows.Forms.MenuItem
Me.SuspendLayout()
'
'Img
'
Me.Img.ColorDepth = System.Windows.Forms.ColorDepth.Depth32Bit
Me.Img.ImageSize = New System.Drawing.Size(200, 150)
Me.Img.TransparentColor = System.Drawing.Color.Transparent
'
'Mnu
'
Me.Mnu.MenuItems.AddRange(New System.Windows.Forms.MenuItem() {Me.FileMnu, Me.ViewMnu, Me.HelpMnu})
'
'FileMnu
'
Me.FileMnu.Index = 0
Me.FileMnu.MenuItems.AddRange(New System.Windows.Forms.MenuItem() {Me.OpenFolder, Me.Extract, Me.FileSep, Me.ExitApplication})
Me.FileMnu.Text = "File"
'
'OpenFolder
'
Me.OpenFolder.Index = 0
Me.OpenFolder.Text = "Open Cache Folder"
'
'Extract
'
Me.Extract.Enabled = False
Me.Extract.Index = 1
Me.Extract.Shortcut = System.Windows.Forms.Shortcut.CtrlE
Me.Extract.Text = "Extract"
'
'FileSep
'
Me.FileSep.Index = 2
Me.FileSep.Text = "-"
'
'ExitApplication
'
Me.ExitApplication.Index = 3
Me.ExitApplication.Text = "Exit"
'
'ViewMnu
'
Me.ViewMnu.Index = 1
Me.ViewMnu.MenuItems.AddRange(New System.Windows.Forms.MenuItem() {Me.Filenames})
Me.ViewMnu.Text = "View"
'
'Filenames
'
Me.Filenames.Index = 0
Me.Filenames.Text = "Filenames"
'
'HelpMnu
'
Me.HelpMnu.Index = 2
Me.HelpMnu.MenuItems.AddRange(New System.Windows.Forms.MenuItem() {Me.About})
Me.HelpMnu.Text = "Help"
'
'About
'
Me.About.Index = 0
Me.About.Text = "About"
'
'Browser
'
Me.Browser.Description = "Choose a folder to extract selected images."
'
'List
'
Me.List.Dock = System.Windows.Forms.DockStyle.Fill
Me.List.LargeImageList = Me.Img
Me.List.Location = New System.Drawing.Point(0, 0)
Me.List.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
Me.List.Name = "List"
Me.List.Size = New System.Drawing.Size(696, 380)
Me.List.TabIndex = 0
Me.List.TileSize = New System.Drawing.Size(200, 150)
Me.List.UseCompatibleStateImageBehavior = False
'
'Context
'
Me.Context.MenuItems.AddRange(New System.Windows.Forms.MenuItem() {Me.CopyCon})
'
'CopyCon
'
Me.CopyCon.DefaultItem = True
Me.CopyCon.Index = 0
Me.CopyCon.Text = "Extract"
'
'Main
'
Me.AutoScaleDimensions = New System.Drawing.SizeF(8.0!, 20.0!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.ClientSize = New System.Drawing.Size(696, 380)
Me.Controls.Add(Me.List)
Me.Font = New System.Drawing.Font("Segoe UI", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon)
Me.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
Me.Menu = Me.Mnu
Me.Name = "Main"
Me.Text = "Windows Spotlight Extractor"
Me.ResumeLayout(False)
End Sub
Friend WithEvents Img As System.Windows.Forms.ImageList
Friend WithEvents Mnu As System.Windows.Forms.MainMenu
Friend WithEvents Extract As System.Windows.Forms.MenuItem
Friend WithEvents Browser As System.Windows.Forms.FolderBrowserDialog
Friend WithEvents List As System.Windows.Forms.ListView
Friend WithEvents OpenFolder As System.Windows.Forms.MenuItem
Friend WithEvents HelpMnu As System.Windows.Forms.MenuItem
Friend WithEvents About As System.Windows.Forms.MenuItem
Friend WithEvents Context As System.Windows.Forms.ContextMenu
Friend WithEvents CopyCon As System.Windows.Forms.MenuItem
Friend WithEvents FileMnu As System.Windows.Forms.MenuItem
Friend WithEvents FileSep As System.Windows.Forms.MenuItem
Friend WithEvents ExitApplication As System.Windows.Forms.MenuItem
Friend WithEvents ViewMnu As System.Windows.Forms.MenuItem
Friend WithEvents Filenames As System.Windows.Forms.MenuItem
End Class