forked from giabao4498/Hydra-Virus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmainForm.Designer.vb
92 lines (87 loc) · 4.01 KB
/
mainForm.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
81
82
83
84
85
86
87
88
89
90
91
92
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()>
Partial Class mainForm
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(mainForm))
Me.oathLabel = New System.Windows.Forms.Label()
Me.author = New System.Windows.Forms.Label()
Me.logo = New System.Windows.Forms.PictureBox()
CType(Me.logo, System.ComponentModel.ISupportInitialize).BeginInit()
Me.SuspendLayout()
'
'oathLabel
'
Me.oathLabel.AutoSize = True
Me.oathLabel.Font = New System.Drawing.Font("Microsoft Sans Serif", 13.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.oathLabel.Location = New System.Drawing.Point(240, 35)
Me.oathLabel.Name = "oathLabel"
Me.oathLabel.Size = New System.Drawing.Size(0, 30)
Me.oathLabel.TabIndex = 0
Me.oathLabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft
'
'author
'
Me.author.AutoSize = True
Me.author.Font = New System.Drawing.Font("Microsoft Sans Serif", 10.2!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.author.Location = New System.Drawing.Point(459, 155)
Me.author.Name = "author"
Me.author.Size = New System.Drawing.Size(313, 25)
Me.author.TabIndex = 1
Me.author.Text = "Author: Nguyen Hoang Gia Bao"
Me.author.TextAlign = System.Drawing.ContentAlignment.MiddleLeft
'
'logo
'
Me.logo.Image = CType(resources.GetObject("logo.Image"), System.Drawing.Image)
Me.logo.Location = New System.Drawing.Point(15, 0)
Me.logo.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
Me.logo.Name = "logo"
Me.logo.Size = New System.Drawing.Size(144, 144)
Me.logo.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize
Me.logo.TabIndex = 2
Me.logo.TabStop = False
'
'mainForm
'
Me.AutoScaleDimensions = New System.Drawing.SizeF(9.0!, 20.0!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink
Me.ClientSize = New System.Drawing.Size(824, 222)
Me.Controls.Add(Me.logo)
Me.Controls.Add(Me.author)
Me.Controls.Add(Me.oathLabel)
Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle
Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon)
Me.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
Me.MaximizeBox = False
Me.MinimizeBox = False
Me.Name = "mainForm"
Me.ShowInTaskbar = False
Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen
Me.Text = "Hydra Virus"
Me.TopMost = True
CType(Me.logo, System.ComponentModel.ISupportInitialize).EndInit()
Me.ResumeLayout(False)
Me.PerformLayout()
End Sub
Friend WithEvents oathLabel As Label
Friend WithEvents author As Label
Friend WithEvents logo As PictureBox
End Class