-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathForm1.Designer.vb
More file actions
118 lines (114 loc) · 4.23 KB
/
Form1.Designer.vb
File metadata and controls
118 lines (114 loc) · 4.23 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
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
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()>
Partial Class Form1
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(Form1))
Label1 = New Label()
PictureBox1 = New PictureBox()
TextBox1 = New TextBox()
Button1 = New Button()
MenuStrip1 = New MenuStrip()
AboutToolStripMenuItem = New ToolStripMenuItem()
CType(PictureBox1, ComponentModel.ISupportInitialize).BeginInit()
MenuStrip1.SuspendLayout()
SuspendLayout()
'
' Label1
'
Label1.AutoSize = True
Label1.Location = New Point(77, 192)
Label1.Name = "Label1"
Label1.Size = New Size(167, 15)
Label1.TabIndex = 0
Label1.Text = "Created By MiTechMess (2023)" & vbCrLf
'
' PictureBox1
'
PictureBox1.Image = My.Resources.Resources.MakeMKV_AutoKey_GUI_logo
PictureBox1.Location = New Point(12, 29)
PictureBox1.Name = "PictureBox1"
PictureBox1.Size = New Size(296, 82)
PictureBox1.TabIndex = 1
PictureBox1.TabStop = False
'
' TextBox1
'
TextBox1.BackColor = SystemColors.Info
TextBox1.Font = New Font("Segoe UI", 10F, FontStyle.Bold Or FontStyle.Italic, GraphicsUnit.Point)
TextBox1.Location = New Point(63, 154)
TextBox1.Name = "TextBox1"
TextBox1.ReadOnly = True
TextBox1.Size = New Size(194, 25)
TextBox1.TabIndex = 2
TextBox1.TabStop = False
TextBox1.TextAlign = HorizontalAlignment.Center
'
' Button1
'
Button1.Font = New Font("Segoe UI", 10F, FontStyle.Regular, GraphicsUnit.Point)
Button1.Location = New Point(63, 117)
Button1.Name = "Button1"
Button1.Size = New Size(194, 31)
Button1.TabIndex = 3
Button1.Text = "Update MakeMKV Key"
Button1.UseVisualStyleBackColor = True
'
' MenuStrip1
'
MenuStrip1.Items.AddRange(New ToolStripItem() {AboutToolStripMenuItem})
MenuStrip1.Location = New Point(0, 0)
MenuStrip1.Name = "MenuStrip1"
MenuStrip1.Size = New Size(320, 24)
MenuStrip1.TabIndex = 4
MenuStrip1.Text = "MenuStrip1"
'
' AboutToolStripMenuItem
'
AboutToolStripMenuItem.Name = "AboutToolStripMenuItem"
AboutToolStripMenuItem.Size = New Size(52, 20)
AboutToolStripMenuItem.Text = "About"
'
' Form1
'
AutoScaleDimensions = New SizeF(7F, 15F)
AutoScaleMode = AutoScaleMode.Font
ClientSize = New Size(320, 216)
Controls.Add(Button1)
Controls.Add(TextBox1)
Controls.Add(PictureBox1)
Controls.Add(Label1)
Controls.Add(MenuStrip1)
Icon = CType(resources.GetObject("$this.Icon"), Icon)
MainMenuStrip = MenuStrip1
Name = "Form1"
Text = "MakeMKV AutoKey GUI"
CType(PictureBox1, ComponentModel.ISupportInitialize).EndInit()
MenuStrip1.ResumeLayout(False)
MenuStrip1.PerformLayout()
ResumeLayout(False)
PerformLayout()
End Sub
Friend WithEvents Label1 As Label
Friend WithEvents PictureBox1 As PictureBox
Friend WithEvents TextBox1 As TextBox
Friend WithEvents Button1 As Button
Friend WithEvents MenuStrip1 As MenuStrip
Friend WithEvents AboutToolStripMenuItem As ToolStripMenuItem
End Class