-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfrmAbout.Designer.vb
131 lines (127 loc) · 5.85 KB
/
frmAbout.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
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
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Partial Class frmAbout
Inherits System.Windows.Forms.Form
'Form reemplaza a Dispose para limpiar la lista de componentes.
<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
'Requerido por el Diseñador de Windows Forms
Private components As System.ComponentModel.IContainer
'NOTA: el Diseñador de Windows Forms necesita el siguiente procedimiento
'Se puede modificar usando el Diseñador de Windows Forms.
'No lo modifique con el editor de código.
<System.Diagnostics.DebuggerStepThrough()> _
Private Sub InitializeComponent()
Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(frmAbout))
Me.Label1 = New System.Windows.Forms.Label()
Me.cmdClose = New System.Windows.Forms.Button()
Me.Label3 = New System.Windows.Forms.Label()
Me.Label2 = New System.Windows.Forms.Label()
Me.Label5 = New System.Windows.Forms.Label()
Me.Label4 = New System.Windows.Forms.Label()
Me.SuspendLayout()
'
'Label1
'
Me.Label1.AutoSize = True
Me.Label1.BackColor = System.Drawing.Color.Transparent
Me.Label1.Font = New System.Drawing.Font("Tahoma", 36.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Label1.Location = New System.Drawing.Point(196, 9)
Me.Label1.Name = "Label1"
Me.Label1.Size = New System.Drawing.Size(196, 58)
Me.Label1.TabIndex = 0
Me.Label1.Text = "PearBox"
'
'cmdClose
'
Me.cmdClose.DialogResult = System.Windows.Forms.DialogResult.Cancel
Me.cmdClose.Location = New System.Drawing.Point(338, 202)
Me.cmdClose.Name = "cmdClose"
Me.cmdClose.Size = New System.Drawing.Size(75, 23)
Me.cmdClose.TabIndex = 1
Me.cmdClose.Text = "Close"
Me.cmdClose.UseVisualStyleBackColor = True
'
'Label3
'
Me.Label3.AutoSize = True
Me.Label3.BackColor = System.Drawing.Color.Transparent
Me.Label3.Font = New System.Drawing.Font("Tahoma", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Label3.Location = New System.Drawing.Point(204, 67)
Me.Label3.Name = "Label3"
Me.Label3.Size = New System.Drawing.Size(32, 19)
Me.Label3.TabIndex = 3
Me.Label3.Text = "3.0"
'
'Label2
'
Me.Label2.BackColor = System.Drawing.Color.Transparent
Me.Label2.ForeColor = System.Drawing.SystemColors.ControlLightLight
Me.Label2.Location = New System.Drawing.Point(110, 186)
Me.Label2.Name = "Label2"
Me.Label2.Size = New System.Drawing.Size(237, 13)
Me.Label2.TabIndex = 4
Me.Label2.Text = "Portions © Tecnologias Edson Armando"
Me.Label2.TextAlign = System.Drawing.ContentAlignment.TopRight
'
'Label5
'
Me.Label5.BackColor = System.Drawing.Color.Transparent
Me.Label5.ForeColor = System.Drawing.SystemColors.ControlLightLight
Me.Label5.Location = New System.Drawing.Point(110, 199)
Me.Label5.Name = "Label5"
Me.Label5.Size = New System.Drawing.Size(237, 13)
Me.Label5.TabIndex = 6
Me.Label5.Text = "Original front-end by Jamie Barlett (2009)"
Me.Label5.TextAlign = System.Drawing.ContentAlignment.TopRight
'
'Label4
'
Me.Label4.BackColor = System.Drawing.Color.Transparent
Me.Label4.ForeColor = System.Drawing.SystemColors.ControlLightLight
Me.Label4.Location = New System.Drawing.Point(107, 212)
Me.Label4.Name = "Label4"
Me.Label4.Size = New System.Drawing.Size(240, 13)
Me.Label4.TabIndex = 7
Me.Label4.Text = "OS Artwork by Flameia Design (Julia Nikolaeva)"
Me.Label4.TextAlign = System.Drawing.ContentAlignment.TopRight
'
'frmAbout
'
Me.AcceptButton = Me.cmdClose
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.BackgroundImage = Global.PearBox.My.Resources.Resources.BackgroundImage
Me.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch
Me.CancelButton = Me.cmdClose
Me.ClientSize = New System.Drawing.Size(425, 237)
Me.Controls.Add(Me.Label4)
Me.Controls.Add(Me.Label5)
Me.Controls.Add(Me.Label2)
Me.Controls.Add(Me.Label3)
Me.Controls.Add(Me.cmdClose)
Me.Controls.Add(Me.Label1)
Me.Font = New System.Drawing.Font("Tahoma", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle
Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon)
Me.MaximizeBox = False
Me.MinimizeBox = False
Me.Name = "frmAbout"
Me.Text = "About PearBox"
Me.ResumeLayout(False)
Me.PerformLayout()
End Sub
Friend WithEvents Label1 As System.Windows.Forms.Label
Friend WithEvents cmdClose As System.Windows.Forms.Button
Friend WithEvents Label3 As System.Windows.Forms.Label
Friend WithEvents Label2 As System.Windows.Forms.Label
Friend WithEvents Label5 As System.Windows.Forms.Label
Friend WithEvents Label4 As System.Windows.Forms.Label
End Class