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
|
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Partial Class SkinConverter
Inherits System.Windows.Forms.UserControl
'UserControl 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.Panel1 = New System.Windows.Forms.Panel()
Me.txtin = New System.Windows.Forms.TextBox()
Me.txtout = New System.Windows.Forms.TextBox()
Me.Label1 = New System.Windows.Forms.Label()
Me.Label2 = New System.Windows.Forms.Label()
Me.btnin = New System.Windows.Forms.Button()
Me.btnout = New System.Windows.Forms.Button()
Me.btnconvert = New System.Windows.Forms.Button()
Me.Panel1.SuspendLayout()
Me.SuspendLayout()
'
'Panel1
'
Me.Panel1.Controls.Add(Me.btnconvert)
Me.Panel1.Controls.Add(Me.btnout)
Me.Panel1.Controls.Add(Me.btnin)
Me.Panel1.Controls.Add(Me.Label2)
Me.Panel1.Controls.Add(Me.Label1)
Me.Panel1.Controls.Add(Me.txtout)
Me.Panel1.Controls.Add(Me.txtin)
Me.Panel1.Dock = System.Windows.Forms.DockStyle.Fill
Me.Panel1.Location = New System.Drawing.Point(0, 0)
Me.Panel1.Name = "Panel1"
Me.Panel1.Size = New System.Drawing.Size(397, 116)
Me.Panel1.TabIndex = 0
'
'txtin
'
Me.txtin.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
Me.txtin.Location = New System.Drawing.Point(81, 21)
Me.txtin.Name = "txtin"
Me.txtin.ReadOnly = True
Me.txtin.Size = New System.Drawing.Size(221, 20)
Me.txtin.TabIndex = 0
'
'txtout
'
Me.txtout.Anchor = CType(((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left) _
Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
Me.txtout.Location = New System.Drawing.Point(81, 58)
Me.txtout.Name = "txtout"
Me.txtout.ReadOnly = True
Me.txtout.Size = New System.Drawing.Size(221, 20)
Me.txtout.TabIndex = 1
'
'Label1
'
Me.Label1.AutoSize = True
Me.Label1.Location = New System.Drawing.Point(14, 24)
Me.Label1.Name = "Label1"
Me.Label1.Size = New System.Drawing.Size(50, 13)
Me.Label1.TabIndex = 2
Me.Label1.Text = "Input file:"
'
'Label2
'
Me.Label2.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
Me.Label2.AutoSize = True
Me.Label2.Location = New System.Drawing.Point(14, 61)
Me.Label2.Name = "Label2"
Me.Label2.Size = New System.Drawing.Size(58, 13)
Me.Label2.TabIndex = 3
Me.Label2.Text = "Output file:"
'
'btnin
'
Me.btnin.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
Me.btnin.Location = New System.Drawing.Point(308, 19)
Me.btnin.Name = "btnin"
Me.btnin.Size = New System.Drawing.Size(75, 23)
Me.btnin.TabIndex = 4
Me.btnin.Text = "Browse"
Me.btnin.UseVisualStyleBackColor = True
'
'btnout
'
Me.btnout.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
Me.btnout.Location = New System.Drawing.Point(308, 55)
Me.btnout.Name = "btnout"
Me.btnout.Size = New System.Drawing.Size(75, 23)
Me.btnout.TabIndex = 5
Me.btnout.Text = "Browse"
Me.btnout.UseVisualStyleBackColor = True
'
'btnconvert
'
Me.btnconvert.Anchor = System.Windows.Forms.AnchorStyles.Bottom
Me.btnconvert.AutoSize = True
Me.btnconvert.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink
Me.btnconvert.Location = New System.Drawing.Point(168, 84)
Me.btnconvert.Name = "btnconvert"
Me.btnconvert.Size = New System.Drawing.Size(54, 23)
Me.btnconvert.TabIndex = 6
Me.btnconvert.Text = "Convert"
Me.btnconvert.UseVisualStyleBackColor = True
'
'SkinConverter
'
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.Controls.Add(Me.Panel1)
Me.Name = "SkinConverter"
Me.Size = New System.Drawing.Size(397, 116)
Me.Panel1.ResumeLayout(False)
Me.Panel1.PerformLayout()
Me.ResumeLayout(False)
End Sub
Friend WithEvents Panel1 As System.Windows.Forms.Panel
Friend WithEvents btnconvert As System.Windows.Forms.Button
Friend WithEvents btnout As System.Windows.Forms.Button
Friend WithEvents btnin As System.Windows.Forms.Button
Friend WithEvents Label2 As System.Windows.Forms.Label
Friend WithEvents Label1 As System.Windows.Forms.Label
Friend WithEvents txtout As System.Windows.Forms.TextBox
Friend WithEvents txtin As System.Windows.Forms.TextBox
End Class
|