-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathForm2.Designer.vb
More file actions
79 lines (75 loc) · 2.6 KB
/
Form2.Designer.vb
File metadata and controls
79 lines (75 loc) · 2.6 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
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Partial Class Form2
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()
Dim resources As ComponentModel.ComponentResourceManager = New ComponentModel.ComponentResourceManager(GetType(Form2))
Label1 = New Label()
Label2 = New Label()
TextBox1 = New TextBox()
SuspendLayout()
'
' Label1
'
Label1.AutoSize = True
Label1.Font = New Font("Segoe UI", 12F, FontStyle.Bold, GraphicsUnit.Point)
Label1.Location = New Point(12, 9)
Label1.Name = "Label1"
Label1.Size = New Size(122, 21)
Label1.TabIndex = 0
Label1.Text = "About this app"
'
' Label2
'
Label2.AutoSize = True
Label2.Location = New Point(17, 35)
Label2.Name = "Label2"
Label2.Size = New Size(0, 15)
Label2.TabIndex = 1
'
' TextBox1
'
TextBox1.Location = New Point(12, 35)
TextBox1.Multiline = True
TextBox1.Name = "TextBox1"
TextBox1.ReadOnly = True
TextBox1.ScrollBars = ScrollBars.Vertical
TextBox1.Size = New Size(607, 403)
TextBox1.TabIndex = 2
TextBox1.TabStop = False
TextBox1.Text = resources.GetString("TextBox1.Text")
'
' Form2
'
AutoScaleDimensions = New SizeF(7F, 15F)
AutoScaleMode = AutoScaleMode.Font
ClientSize = New Size(637, 460)
Controls.Add(TextBox1)
Controls.Add(Label2)
Controls.Add(Label1)
Icon = CType(resources.GetObject("$this.Icon"), Icon)
Name = "Form2"
Text = "MakeMKV AutoKey GUI"
ResumeLayout(False)
PerformLayout()
End Sub
Friend WithEvents Label1 As Label
Friend WithEvents Label2 As Label
Friend WithEvents TextBox1 As TextBox
End Class