프로젝트

일반

사용자정보

통계
| 브랜치(Branch): | 개정판:

hytos / DTI_PID / SPPIDConverter / Main.Designer.vb @ 24015dc6

이력 | 보기 | 이력해설 | 다운로드 (16.6 KB)

1 4f359afa Gyusu
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
2
Partial Class Main
3
    Inherits System.Windows.Forms.Form
4
5
    'Form은 Dispose를 재정의하여 구성 요소 목록을 정리합니다.
6
    <System.Diagnostics.DebuggerNonUserCode()> _
7
    Protected Overrides Sub Dispose(ByVal disposing As Boolean)
8
        Try
9
            If disposing AndAlso components IsNot Nothing Then
10
                components.Dispose()
11
            End If
12
        Finally
13
            MyBase.Dispose(disposing)
14
        End Try
15
    End Sub
16
17
    'Windows Form 디자이너에 필요합니다.
18
    Private components As System.ComponentModel.IContainer
19
20
    '참고: 다음 프로시저는 Windows Form 디자이너에 필요합니다.
21
    '수정하려면 Windows Form 디자이너를 사용하십시오.  
22
    '코드 편집기에서는 수정하지 마세요.
23
    <System.Diagnostics.DebuggerStepThrough()> _
24
    Private Sub InitializeComponent()
25 962b2464 Gyusu
        Me.components = New System.ComponentModel.Container()
26
        Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(Main))
27 171ac39d Gyusu
        Dim TreeNode1 As System.Windows.Forms.TreeNode = New System.Windows.Forms.TreeNode("Drawing", 15, 16)
28 4f359afa Gyusu
        Me.Status_Main = New System.Windows.Forms.StatusStrip()
29 e282643f Gyusu
        Me.ProgressBar_Status = New System.Windows.Forms.ToolStripProgressBar()
30 e1cde8f2 Gyusu
        Me.Txt_Status = New System.Windows.Forms.ToolStripStatusLabel()
31 962b2464 Gyusu
        Me.ToolStrip1 = New System.Windows.Forms.ToolStrip()
32 e282643f Gyusu
        Me.DropDown_File = New System.Windows.Forms.ToolStripDropDownButton()
33 272662f9 Gyusu
        Me.LoadXmlToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
34 e282643f Gyusu
        Me.ToolStripDropDownButton2 = New System.Windows.Forms.ToolStripDropDownButton()
35
        Me.Btn_Setting = New System.Windows.Forms.ToolStripMenuItem()
36 7824381a Gyusu
        Me.ToolStripDropDownButton3 = New System.Windows.Forms.ToolStripDropDownButton()
37
        Me.Btn_ClearGrid = New System.Windows.Forms.ToolStripMenuItem()
38
        Me.ClearLogToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
39 171ac39d Gyusu
        Me.Btn_Convert = New System.Windows.Forms.ToolStripButton()
40
        Me.Btn_Stop = New System.Windows.Forms.ToolStripButton()
41 e1cde8f2 Gyusu
        Me.Main_Tab = New System.Windows.Forms.TabControl()
42 e282643f Gyusu
        Me.SplitContainer2 = New System.Windows.Forms.SplitContainer()
43
        Me.Tree_Result = New System.Windows.Forms.TreeView()
44 272662f9 Gyusu
        Me.TreeNodeImageList = New System.Windows.Forms.ImageList(Me.components)
45 e282643f Gyusu
        Me.SplitContainer4 = New System.Windows.Forms.SplitContainer()
46
        Me.DataGrid_Result = New System.Windows.Forms.DataGridView()
47 e1cde8f2 Gyusu
        Me.ListBox_Result = New System.Windows.Forms.ListBox()
48 171ac39d Gyusu
        Me.FolderBrowserDialog1 = New System.Windows.Forms.FolderBrowserDialog()
49 4f359afa Gyusu
        Me.Status_Main.SuspendLayout()
50 962b2464 Gyusu
        Me.ToolStrip1.SuspendLayout()
51 e282643f Gyusu
        CType(Me.SplitContainer2, System.ComponentModel.ISupportInitialize).BeginInit()
52
        Me.SplitContainer2.Panel1.SuspendLayout()
53
        Me.SplitContainer2.Panel2.SuspendLayout()
54
        Me.SplitContainer2.SuspendLayout()
55
        CType(Me.SplitContainer4, System.ComponentModel.ISupportInitialize).BeginInit()
56
        Me.SplitContainer4.Panel1.SuspendLayout()
57
        Me.SplitContainer4.Panel2.SuspendLayout()
58
        Me.SplitContainer4.SuspendLayout()
59
        CType(Me.DataGrid_Result, System.ComponentModel.ISupportInitialize).BeginInit()
60 4f359afa Gyusu
        Me.SuspendLayout()
61
        '
62 31d47a80 Gyusu
        'Status_Main
63
        '
64 e282643f Gyusu
        Me.Status_Main.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.ProgressBar_Status, Me.Txt_Status})
65 31d47a80 Gyusu
        Me.Status_Main.Location = New System.Drawing.Point(0, 449)
66
        Me.Status_Main.Name = "Status_Main"
67 272662f9 Gyusu
        Me.Status_Main.Size = New System.Drawing.Size(721, 26)
68 31d47a80 Gyusu
        Me.Status_Main.TabIndex = 2
69
        Me.Status_Main.Text = "StatusStrip1"
70
        '
71 e1cde8f2 Gyusu
        'ProgressBar_Status
72
        '
73
        Me.ProgressBar_Status.Name = "ProgressBar_Status"
74
        Me.ProgressBar_Status.Size = New System.Drawing.Size(200, 20)
75
        '
76 31d47a80 Gyusu
        'Txt_Status
77
        '
78
        Me.Txt_Status.Name = "Txt_Status"
79
        Me.Txt_Status.Size = New System.Drawing.Size(40, 21)
80
        Me.Txt_Status.Text = "Status"
81
        '
82
        'ToolStrip1
83
        '
84
        Me.ToolStrip1.ImageScalingSize = New System.Drawing.Size(24, 24)
85 171ac39d Gyusu
        Me.ToolStrip1.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.DropDown_File, Me.ToolStripDropDownButton2, Me.ToolStripDropDownButton3, Me.Btn_Convert, Me.Btn_Stop})
86 31d47a80 Gyusu
        Me.ToolStrip1.Location = New System.Drawing.Point(0, 0)
87
        Me.ToolStrip1.Name = "ToolStrip1"
88 272662f9 Gyusu
        Me.ToolStrip1.Size = New System.Drawing.Size(721, 25)
89 31d47a80 Gyusu
        Me.ToolStrip1.TabIndex = 4
90
        Me.ToolStrip1.Text = "ToolStrip1"
91
        '
92 e282643f Gyusu
        'DropDown_File
93
        '
94
        Me.DropDown_File.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text
95 272662f9 Gyusu
        Me.DropDown_File.DropDownItems.AddRange(New System.Windows.Forms.ToolStripItem() {Me.LoadXmlToolStripMenuItem})
96 e282643f Gyusu
        Me.DropDown_File.Image = CType(resources.GetObject("DropDown_File.Image"), System.Drawing.Image)
97
        Me.DropDown_File.ImageTransparentColor = System.Drawing.Color.Magenta
98
        Me.DropDown_File.Name = "DropDown_File"
99
        Me.DropDown_File.Size = New System.Drawing.Size(38, 22)
100
        Me.DropDown_File.Text = "File"
101
        '
102 272662f9 Gyusu
        'LoadXmlToolStripMenuItem
103
        '
104
        Me.LoadXmlToolStripMenuItem.Name = "LoadXmlToolStripMenuItem"
105 7824381a Gyusu
        Me.LoadXmlToolStripMenuItem.Size = New System.Drawing.Size(125, 22)
106 272662f9 Gyusu
        Me.LoadXmlToolStripMenuItem.Text = "Load Xml"
107
        '
108 e282643f Gyusu
        'ToolStripDropDownButton2
109
        '
110
        Me.ToolStripDropDownButton2.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text
111
        Me.ToolStripDropDownButton2.DropDownItems.AddRange(New System.Windows.Forms.ToolStripItem() {Me.Btn_Setting})
112
        Me.ToolStripDropDownButton2.Image = CType(resources.GetObject("ToolStripDropDownButton2.Image"), System.Drawing.Image)
113
        Me.ToolStripDropDownButton2.ImageTransparentColor = System.Drawing.Color.Magenta
114
        Me.ToolStripDropDownButton2.Name = "ToolStripDropDownButton2"
115
        Me.ToolStripDropDownButton2.Size = New System.Drawing.Size(48, 22)
116
        Me.ToolStripDropDownButton2.Text = "Tools"
117
        '
118
        'Btn_Setting
119
        '
120 7824381a Gyusu
        Me.Btn_Setting.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text
121 e282643f Gyusu
        Me.Btn_Setting.Image = CType(resources.GetObject("Btn_Setting.Image"), System.Drawing.Image)
122
        Me.Btn_Setting.Name = "Btn_Setting"
123 171ac39d Gyusu
        Me.Btn_Setting.Size = New System.Drawing.Size(112, 22)
124 e282643f Gyusu
        Me.Btn_Setting.Text = "Setting"
125
        '
126 7824381a Gyusu
        'ToolStripDropDownButton3
127
        '
128
        Me.ToolStripDropDownButton3.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text
129
        Me.ToolStripDropDownButton3.DropDownItems.AddRange(New System.Windows.Forms.ToolStripItem() {Me.Btn_ClearGrid, Me.ClearLogToolStripMenuItem})
130
        Me.ToolStripDropDownButton3.Image = CType(resources.GetObject("ToolStripDropDownButton3.Image"), System.Drawing.Image)
131
        Me.ToolStripDropDownButton3.ImageTransparentColor = System.Drawing.Color.Magenta
132
        Me.ToolStripDropDownButton3.Name = "ToolStripDropDownButton3"
133
        Me.ToolStripDropDownButton3.Size = New System.Drawing.Size(46, 22)
134
        Me.ToolStripDropDownButton3.Text = "View"
135
        '
136
        'Btn_ClearGrid
137
        '
138
        Me.Btn_ClearGrid.Name = "Btn_ClearGrid"
139
        Me.Btn_ClearGrid.Size = New System.Drawing.Size(127, 22)
140
        Me.Btn_ClearGrid.Text = "Clear Grid"
141
        '
142
        'ClearLogToolStripMenuItem
143
        '
144
        Me.ClearLogToolStripMenuItem.Name = "ClearLogToolStripMenuItem"
145
        Me.ClearLogToolStripMenuItem.Size = New System.Drawing.Size(127, 22)
146
        Me.ClearLogToolStripMenuItem.Text = "Clear Log"
147
        '
148 171ac39d Gyusu
        'Btn_Convert
149
        '
150
        Me.Btn_Convert.BackColor = System.Drawing.Color.Azure
151
        Me.Btn_Convert.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text
152
        Me.Btn_Convert.Image = CType(resources.GetObject("Btn_Convert.Image"), System.Drawing.Image)
153
        Me.Btn_Convert.ImageTransparentColor = System.Drawing.Color.Magenta
154
        Me.Btn_Convert.Name = "Btn_Convert"
155
        Me.Btn_Convert.Size = New System.Drawing.Size(53, 22)
156
        Me.Btn_Convert.Text = "Convert"
157
        '
158
        'Btn_Stop
159
        '
160
        Me.Btn_Stop.BackColor = System.Drawing.Color.LavenderBlush
161
        Me.Btn_Stop.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text
162
        Me.Btn_Stop.Image = CType(resources.GetObject("Btn_Stop.Image"), System.Drawing.Image)
163
        Me.Btn_Stop.ImageTransparentColor = System.Drawing.Color.Magenta
164
        Me.Btn_Stop.Name = "Btn_Stop"
165
        Me.Btn_Stop.Size = New System.Drawing.Size(36, 22)
166
        Me.Btn_Stop.Text = "Stop"
167
        '
168 e1cde8f2 Gyusu
        'Main_Tab
169 e282643f Gyusu
        '
170 e1cde8f2 Gyusu
        Me.Main_Tab.Dock = System.Windows.Forms.DockStyle.Fill
171
        Me.Main_Tab.Location = New System.Drawing.Point(0, 25)
172
        Me.Main_Tab.Name = "Main_Tab"
173
        Me.Main_Tab.SelectedIndex = 0
174 272662f9 Gyusu
        Me.Main_Tab.Size = New System.Drawing.Size(721, 424)
175 e1cde8f2 Gyusu
        Me.Main_Tab.TabIndex = 7
176 e282643f Gyusu
        '
177
        'SplitContainer2
178
        '
179
        Me.SplitContainer2.Dock = System.Windows.Forms.DockStyle.Fill
180 272662f9 Gyusu
        Me.SplitContainer2.Location = New System.Drawing.Point(0, 25)
181 e282643f Gyusu
        Me.SplitContainer2.Name = "SplitContainer2"
182
        '
183
        'SplitContainer2.Panel1
184
        '
185
        Me.SplitContainer2.Panel1.Controls.Add(Me.Tree_Result)
186
        '
187
        'SplitContainer2.Panel2
188
        '
189
        Me.SplitContainer2.Panel2.Controls.Add(Me.SplitContainer4)
190 272662f9 Gyusu
        Me.SplitContainer2.Size = New System.Drawing.Size(721, 424)
191 7824381a Gyusu
        Me.SplitContainer2.SplitterDistance = 232
192 e282643f Gyusu
        Me.SplitContainer2.TabIndex = 3
193
        '
194
        'Tree_Result
195
        '
196 20c84e05 Gyusu
        Me.Tree_Result.BackColor = System.Drawing.Color.White
197 272662f9 Gyusu
        Me.Tree_Result.CheckBoxes = True
198 e282643f Gyusu
        Me.Tree_Result.Dock = System.Windows.Forms.DockStyle.Fill
199 272662f9 Gyusu
        Me.Tree_Result.ImageIndex = 0
200
        Me.Tree_Result.ImageList = Me.TreeNodeImageList
201 e282643f Gyusu
        Me.Tree_Result.Location = New System.Drawing.Point(0, 0)
202
        Me.Tree_Result.Name = "Tree_Result"
203 171ac39d Gyusu
        TreeNode1.ImageIndex = 15
204
        TreeNode1.Name = "Drawing"
205
        TreeNode1.SelectedImageIndex = 16
206
        TreeNode1.Text = "Drawing"
207
        Me.Tree_Result.Nodes.AddRange(New System.Windows.Forms.TreeNode() {TreeNode1})
208 272662f9 Gyusu
        Me.Tree_Result.SelectedImageIndex = 0
209 7824381a Gyusu
        Me.Tree_Result.Size = New System.Drawing.Size(232, 424)
210 e282643f Gyusu
        Me.Tree_Result.TabIndex = 0
211
        '
212 272662f9 Gyusu
        'TreeNodeImageList
213
        '
214
        Me.TreeNodeImageList.ImageStream = CType(resources.GetObject("TreeNodeImageList.ImageStream"), System.Windows.Forms.ImageListStreamer)
215
        Me.TreeNodeImageList.TransparentColor = System.Drawing.Color.Transparent
216
        Me.TreeNodeImageList.Images.SetKeyName(0, "Starry HD.ico")
217
        Me.TreeNodeImageList.Images.SetKeyName(1, "Copy of DROPFLDR.ICO")
218
        Me.TreeNodeImageList.Images.SetKeyName(2, "DRIVE02.ICO")
219
        Me.TreeNodeImageList.Images.SetKeyName(3, "DRIVE.ICO")
220
        Me.TreeNodeImageList.Images.SetKeyName(4, "DRIVEDSC.ICO")
221
        Me.TreeNodeImageList.Images.SetKeyName(5, "DRIVENET.ICO")
222
        Me.TreeNodeImageList.Images.SetKeyName(6, "DRWEB.ICO")
223
        Me.TreeNodeImageList.Images.SetKeyName(7, "POINT02.ICO")
224
        Me.TreeNodeImageList.Images.SetKeyName(8, "POINT04.ICO")
225
        Me.TreeNodeImageList.Images.SetKeyName(9, "POINT13.ICO")
226
        Me.TreeNodeImageList.Images.SetKeyName(10, "POINT14.ICO")
227
        Me.TreeNodeImageList.Images.SetKeyName(11, "Space 1999 CD drive.ico")
228
        Me.TreeNodeImageList.Images.SetKeyName(12, "Space 1999 drive (35).ico")
229
        Me.TreeNodeImageList.Images.SetKeyName(13, "Starry Floppy.ico")
230
        Me.TreeNodeImageList.Images.SetKeyName(14, "028.ICO")
231
        Me.TreeNodeImageList.Images.SetKeyName(15, "001.ICO")
232
        Me.TreeNodeImageList.Images.SetKeyName(16, "002.ICO")
233
        Me.TreeNodeImageList.Images.SetKeyName(17, "003.ICO")
234
        Me.TreeNodeImageList.Images.SetKeyName(18, "004.ICO")
235
        Me.TreeNodeImageList.Images.SetKeyName(19, "005.ICO")
236
        Me.TreeNodeImageList.Images.SetKeyName(20, "006.ICO")
237
        Me.TreeNodeImageList.Images.SetKeyName(21, "007.ICO")
238
        Me.TreeNodeImageList.Images.SetKeyName(22, "008.ICO")
239
        Me.TreeNodeImageList.Images.SetKeyName(23, "009.ICO")
240
        Me.TreeNodeImageList.Images.SetKeyName(24, "010.ICO")
241
        Me.TreeNodeImageList.Images.SetKeyName(25, "021.ICO")
242
        Me.TreeNodeImageList.Images.SetKeyName(26, "022.ICO")
243
        Me.TreeNodeImageList.Images.SetKeyName(27, "027.ICO")
244
        '
245 e282643f Gyusu
        'SplitContainer4
246
        '
247
        Me.SplitContainer4.Dock = System.Windows.Forms.DockStyle.Fill
248
        Me.SplitContainer4.Location = New System.Drawing.Point(0, 0)
249
        Me.SplitContainer4.Name = "SplitContainer4"
250
        Me.SplitContainer4.Orientation = System.Windows.Forms.Orientation.Horizontal
251
        '
252
        'SplitContainer4.Panel1
253
        '
254
        Me.SplitContainer4.Panel1.Controls.Add(Me.DataGrid_Result)
255
        '
256
        'SplitContainer4.Panel2
257
        '
258 e1cde8f2 Gyusu
        Me.SplitContainer4.Panel2.Controls.Add(Me.ListBox_Result)
259 7824381a Gyusu
        Me.SplitContainer4.Size = New System.Drawing.Size(485, 424)
260 171ac39d Gyusu
        Me.SplitContainer4.SplitterDistance = 212
261 e282643f Gyusu
        Me.SplitContainer4.TabIndex = 5
262
        '
263
        'DataGrid_Result
264
        '
265
        Me.DataGrid_Result.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
266
        Me.DataGrid_Result.Dock = System.Windows.Forms.DockStyle.Fill
267
        Me.DataGrid_Result.Location = New System.Drawing.Point(0, 0)
268
        Me.DataGrid_Result.Name = "DataGrid_Result"
269
        Me.DataGrid_Result.RowTemplate.Height = 23
270 171ac39d Gyusu
        Me.DataGrid_Result.Size = New System.Drawing.Size(485, 212)
271 e282643f Gyusu
        Me.DataGrid_Result.TabIndex = 1
272
        '
273 e1cde8f2 Gyusu
        'ListBox_Result
274
        '
275 272662f9 Gyusu
        Me.ListBox_Result.BackColor = System.Drawing.SystemColors.GradientActiveCaption
276 e1cde8f2 Gyusu
        Me.ListBox_Result.Dock = System.Windows.Forms.DockStyle.Fill
277
        Me.ListBox_Result.FormattingEnabled = True
278
        Me.ListBox_Result.ItemHeight = 12
279
        Me.ListBox_Result.Location = New System.Drawing.Point(0, 0)
280
        Me.ListBox_Result.Name = "ListBox_Result"
281 171ac39d Gyusu
        Me.ListBox_Result.Size = New System.Drawing.Size(485, 208)
282 e1cde8f2 Gyusu
        Me.ListBox_Result.TabIndex = 0
283
        '
284 4f359afa Gyusu
        'Main
285
        '
286
        Me.AutoScaleDimensions = New System.Drawing.SizeF(7.0!, 12.0!)
287
        Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
288 272662f9 Gyusu
        Me.ClientSize = New System.Drawing.Size(721, 475)
289
        Me.Controls.Add(Me.SplitContainer2)
290 e1cde8f2 Gyusu
        Me.Controls.Add(Me.Main_Tab)
291 962b2464 Gyusu
        Me.Controls.Add(Me.ToolStrip1)
292 4f359afa Gyusu
        Me.Controls.Add(Me.Status_Main)
293
        Me.Name = "Main"
294
        Me.ShowIcon = False
295 962b2464 Gyusu
        Me.Text = "SPPID Converter"
296 4f359afa Gyusu
        Me.Status_Main.ResumeLayout(False)
297
        Me.Status_Main.PerformLayout()
298 962b2464 Gyusu
        Me.ToolStrip1.ResumeLayout(False)
299
        Me.ToolStrip1.PerformLayout()
300 e282643f Gyusu
        Me.SplitContainer2.Panel1.ResumeLayout(False)
301
        Me.SplitContainer2.Panel2.ResumeLayout(False)
302
        CType(Me.SplitContainer2, System.ComponentModel.ISupportInitialize).EndInit()
303
        Me.SplitContainer2.ResumeLayout(False)
304
        Me.SplitContainer4.Panel1.ResumeLayout(False)
305
        Me.SplitContainer4.Panel2.ResumeLayout(False)
306
        CType(Me.SplitContainer4, System.ComponentModel.ISupportInitialize).EndInit()
307
        Me.SplitContainer4.ResumeLayout(False)
308
        CType(Me.DataGrid_Result, System.ComponentModel.ISupportInitialize).EndInit()
309 4f359afa Gyusu
        Me.ResumeLayout(False)
310
        Me.PerformLayout()
311
312
    End Sub
313
    Friend WithEvents Status_Main As StatusStrip
314 e282643f Gyusu
    Friend WithEvents ProgressBar_Status As ToolStripProgressBar
315 4f359afa Gyusu
    Friend WithEvents Txt_Status As ToolStripStatusLabel
316 962b2464 Gyusu
    Friend WithEvents ToolStrip1 As ToolStrip
317 e282643f Gyusu
    Friend WithEvents DropDown_File As ToolStripDropDownButton
318
    Friend WithEvents ToolStripDropDownButton2 As ToolStripDropDownButton
319
    Friend WithEvents Btn_Setting As ToolStripMenuItem
320 e1cde8f2 Gyusu
    Friend WithEvents Main_Tab As TabControl
321 e282643f Gyusu
    Friend WithEvents SplitContainer2 As SplitContainer
322
    Friend WithEvents Tree_Result As TreeView
323
    Friend WithEvents SplitContainer4 As SplitContainer
324
    Friend WithEvents DataGrid_Result As DataGridView
325 e1cde8f2 Gyusu
    Friend WithEvents ListBox_Result As ListBox
326 272662f9 Gyusu
    Friend WithEvents LoadXmlToolStripMenuItem As ToolStripMenuItem
327
    Friend WithEvents TreeNodeImageList As ImageList
328 20c84e05 Gyusu
    Friend WithEvents ToolStripDropDownButton3 As ToolStripDropDownButton
329
    Friend WithEvents Btn_ClearGrid As ToolStripMenuItem
330
    Friend WithEvents ClearLogToolStripMenuItem As ToolStripMenuItem
331 171ac39d Gyusu
    Friend WithEvents FolderBrowserDialog1 As FolderBrowserDialog
332
    Friend WithEvents Btn_Convert As ToolStripButton
333
    Friend WithEvents Btn_Stop As ToolStripButton
334 4f359afa Gyusu
End Class
클립보드 이미지 추가 (최대 크기: 500 MB)