-
Notifications
You must be signed in to change notification settings - Fork 0
/
MenuForm.Designer.vb
80 lines (75 loc) · 3.28 KB
/
MenuForm.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
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Partial Class MenuForm
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 System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(MenuForm))
Me.btnStart = New System.Windows.Forms.Button()
Me.Label1 = New System.Windows.Forms.Label()
Me.btnInfo = New System.Windows.Forms.Button()
Me.SuspendLayout()
'
'btnStart
'
Me.btnStart.Location = New System.Drawing.Point(55, 367)
Me.btnStart.Name = "btnStart"
Me.btnStart.Size = New System.Drawing.Size(125, 54)
Me.btnStart.TabIndex = 0
Me.btnStart.Text = "Start!"
Me.btnStart.UseVisualStyleBackColor = True
'
'Label1
'
Me.Label1.BackColor = System.Drawing.Color.Transparent
Me.Label1.Font = New System.Drawing.Font("Microsoft Sans Serif", 16.2!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Label1.ForeColor = System.Drawing.SystemColors.ButtonHighlight
Me.Label1.ImageAlign = System.Drawing.ContentAlignment.TopCenter
Me.Label1.Location = New System.Drawing.Point(13, 13)
Me.Label1.Name = "Label1"
Me.Label1.Size = New System.Drawing.Size(218, 101)
Me.Label1.TabIndex = 1
Me.Label1.Text = "Tapix Tower Defense"
'
'btnInfo
'
Me.btnInfo.Location = New System.Drawing.Point(55, 296)
Me.btnInfo.Name = "btnInfo"
Me.btnInfo.Size = New System.Drawing.Size(125, 54)
Me.btnInfo.TabIndex = 0
Me.btnInfo.Text = "Info!"
Me.btnInfo.UseVisualStyleBackColor = True
'
'MenuForm
'
Me.AutoScaleDimensions = New System.Drawing.SizeF(8.0!, 16.0!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.BackgroundImage = Global.Tower_Defense_Game.My.Resources.Resources.menuBackgroundDark
Me.ClientSize = New System.Drawing.Size(243, 447)
Me.Controls.Add(Me.Label1)
Me.Controls.Add(Me.btnInfo)
Me.Controls.Add(Me.btnStart)
Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon)
Me.Name = "MenuForm"
Me.Text = "Tapix Tower Defense - Main Menu!"
Me.ResumeLayout(False)
End Sub
Friend WithEvents btnStart As Button
Friend WithEvents Label1 As Label
Friend WithEvents btnInfo As Button
End Class