-
Notifications
You must be signed in to change notification settings - Fork 1
/
AlternateDataStreamManager.Designer.vb
192 lines (188 loc) · 8.14 KB
/
AlternateDataStreamManager.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
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
Partial Class AlternateDataStreamManager
Inherits System.Windows.Forms.Form
''' <summary>
''' Designer variable used to keep track of non-visual components.
''' </summary>
Private components As System.ComponentModel.IContainer
''' <summary>
''' Disposes resources used by the form.
''' </summary>
''' <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
Protected Overrides Sub Dispose(ByVal disposing As Boolean)
If disposing Then
If components IsNot Nothing Then
components.Dispose()
End If
End If
MyBase.Dispose(disposing)
End Sub
''' <summary>
''' This method is required for Windows Forms designer support.
''' Do not change the method contents inside the source code editor. The Forms designer might
''' not be able to load this method if it was changed manually.
''' </summary>
Private Sub InitializeComponent()
Me.lstStreams = New System.Windows.Forms.ListView()
Me.colStreamsName = CType(New System.Windows.Forms.ColumnHeader(), System.Windows.Forms.ColumnHeader)
Me.colStreamsSize = CType(New System.Windows.Forms.ColumnHeader(), System.Windows.Forms.ColumnHeader)
Me.colStreamsType = CType(New System.Windows.Forms.ColumnHeader(), System.Windows.Forms.ColumnHeader)
Me.colStreamsAttributes = CType(New System.Windows.Forms.ColumnHeader(), System.Windows.Forms.ColumnHeader)
Me.btnOpen = New System.Windows.Forms.Button()
Me.btnView = New System.Windows.Forms.Button()
Me.btnCopy = New System.Windows.Forms.Button()
Me.btnDelete = New System.Windows.Forms.Button()
Me.btnAdd = New System.Windows.Forms.Button()
Me.btnClose = New System.Windows.Forms.Button()
Me.sfdSelectCopyTarget = New System.Windows.Forms.SaveFileDialog()
Me.btnExecute = New System.Windows.Forms.Button()
Me.SuspendLayout()
'
'lstStreams
'
Me.lstStreams.AllowColumnReorder = True
Me.lstStreams.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.lstStreams.Columns.AddRange(New System.Windows.Forms.ColumnHeader() {Me.colStreamsName, Me.colStreamsSize, Me.colStreamsType, Me.colStreamsAttributes})
Me.lstStreams.FullRowSelect = True
Me.lstStreams.GridLines = True
Me.lstStreams.HideSelection = False
Me.lstStreams.LabelWrap = False
Me.lstStreams.Location = New System.Drawing.Point(12, 12)
Me.lstStreams.Name = "lstStreams"
Me.lstStreams.Size = New System.Drawing.Size(419, 197)
Me.lstStreams.TabIndex = 0
Me.lstStreams.UseCompatibleStateImageBehavior = False
Me.lstStreams.View = System.Windows.Forms.View.Details
'
'colStreamsName
'
Me.colStreamsName.Text = "Name"
'
'colStreamsSize
'
Me.colStreamsSize.Text = "Size"
'
'colStreamsType
'
Me.colStreamsType.Text = "Type"
'
'colStreamsAttributes
'
Me.colStreamsAttributes.Text = "Attributes"
'
'btnOpen
'
Me.btnOpen.Anchor = System.Windows.Forms.AnchorStyles.Right
Me.btnOpen.Image = Global.My.Resources.Resources.mouse_right_click_8x
Me.btnOpen.ImageAlign = System.Drawing.ContentAlignment.TopRight
Me.btnOpen.Location = New System.Drawing.Point(437, 12)
Me.btnOpen.Name = "btnOpen"
Me.btnOpen.Size = New System.Drawing.Size(100, 23)
Me.btnOpen.TabIndex = 1
Me.btnOpen.Text = "Open in Notepad"
Me.btnOpen.UseVisualStyleBackColor = True
'
'btnView
'
Me.btnView.Anchor = System.Windows.Forms.AnchorStyles.Right
Me.btnView.Location = New System.Drawing.Point(437, 41)
Me.btnView.Name = "btnView"
Me.btnView.Size = New System.Drawing.Size(100, 23)
Me.btnView.TabIndex = 2
Me.btnView.Text = "View Contents"
Me.btnView.UseVisualStyleBackColor = True
'
'btnCopy
'
Me.btnCopy.Anchor = System.Windows.Forms.AnchorStyles.Right
Me.btnCopy.Location = New System.Drawing.Point(437, 128)
Me.btnCopy.Name = "btnCopy"
Me.btnCopy.Size = New System.Drawing.Size(100, 23)
Me.btnCopy.TabIndex = 5
Me.btnCopy.Text = "Copy Stream"
Me.btnCopy.UseVisualStyleBackColor = True
'
'btnDelete
'
Me.btnDelete.Anchor = System.Windows.Forms.AnchorStyles.Right
Me.btnDelete.Location = New System.Drawing.Point(437, 99)
Me.btnDelete.Name = "btnDelete"
Me.btnDelete.Size = New System.Drawing.Size(100, 23)
Me.btnDelete.TabIndex = 4
Me.btnDelete.Text = "Delete Stream"
Me.btnDelete.UseVisualStyleBackColor = True
'
'btnAdd
'
Me.btnAdd.Anchor = System.Windows.Forms.AnchorStyles.Right
Me.btnAdd.Location = New System.Drawing.Point(437, 157)
Me.btnAdd.Name = "btnAdd"
Me.btnAdd.Size = New System.Drawing.Size(100, 23)
Me.btnAdd.TabIndex = 6
Me.btnAdd.Text = "Add New"
Me.btnAdd.UseVisualStyleBackColor = True
'
'btnClose
'
Me.btnClose.Anchor = System.Windows.Forms.AnchorStyles.Right
Me.btnClose.DialogResult = System.Windows.Forms.DialogResult.Cancel
Me.btnClose.Location = New System.Drawing.Point(437, 186)
Me.btnClose.Name = "btnClose"
Me.btnClose.Size = New System.Drawing.Size(100, 23)
Me.btnClose.TabIndex = 7
Me.btnClose.Text = "Close"
Me.btnClose.UseVisualStyleBackColor = True
'
'sfdSelectCopyTarget
'
Me.sfdSelectCopyTarget.AddExtension = False
Me.sfdSelectCopyTarget.DereferenceLinks = False
Me.sfdSelectCopyTarget.Filter = "All Files|*.*"
Me.sfdSelectCopyTarget.OverwritePrompt = False
'
'btnExecute
'
Me.btnExecute.Anchor = System.Windows.Forms.AnchorStyles.Right
Me.btnExecute.Location = New System.Drawing.Point(437, 70)
Me.btnExecute.Name = "btnExecute"
Me.btnExecute.Size = New System.Drawing.Size(100, 23)
Me.btnExecute.TabIndex = 3
Me.btnExecute.Text = "Execute"
Me.btnExecute.UseVisualStyleBackColor = True
'
'AlternateDataStreamManager
'
Me.AcceptButton = Me.btnOpen
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.CancelButton = Me.btnClose
Me.ClientSize = New System.Drawing.Size(549, 221)
Me.Controls.Add(Me.btnExecute)
Me.Controls.Add(Me.btnClose)
Me.Controls.Add(Me.btnAdd)
Me.Controls.Add(Me.btnDelete)
Me.Controls.Add(Me.btnCopy)
Me.Controls.Add(Me.btnView)
Me.Controls.Add(Me.btnOpen)
Me.Controls.Add(Me.lstStreams)
Me.Name = "AlternateDataStreamManager"
Me.ShowIcon = False
Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent
Me.Text = "Data Stream Manager"
Me.ResumeLayout(False)
End Sub
Private sfdSelectCopyTarget As System.Windows.Forms.SaveFileDialog
Private WithEvents btnCopy As System.Windows.Forms.Button
Private WithEvents btnClose As System.Windows.Forms.Button
Private WithEvents btnAdd As System.Windows.Forms.Button
Private WithEvents btnDelete As System.Windows.Forms.Button
Private WithEvents btnView As System.Windows.Forms.Button
Private WithEvents btnOpen As System.Windows.Forms.Button
Private colStreamsAttributes As System.Windows.Forms.ColumnHeader
Private colStreamsType As System.Windows.Forms.ColumnHeader
Private colStreamsSize As System.Windows.Forms.ColumnHeader
Private colStreamsName As System.Windows.Forms.ColumnHeader
Private WithEvents lstStreams As System.Windows.Forms.ListView
Private WithEvents btnExecute As System.Windows.Forms.Button
End Class