-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfrmAcercade.Designer.vb
82 lines (78 loc) · 3.34 KB
/
frmAcercade.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
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Partial Class frmAcercade
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()
Me.GroupBox1 = New System.Windows.Forms.GroupBox()
Me.PictureBox1 = New System.Windows.Forms.PictureBox()
Me.btnAceptar = New System.Windows.Forms.Button()
Me.GroupBox1.SuspendLayout()
CType(Me.PictureBox1, System.ComponentModel.ISupportInitialize).BeginInit()
Me.SuspendLayout()
'
'GroupBox1
'
Me.GroupBox1.BackColor = System.Drawing.SystemColors.InactiveCaption
Me.GroupBox1.Controls.Add(Me.PictureBox1)
Me.GroupBox1.ForeColor = System.Drawing.SystemColors.InfoText
Me.GroupBox1.Location = New System.Drawing.Point(53, 22)
Me.GroupBox1.Name = "GroupBox1"
Me.GroupBox1.Size = New System.Drawing.Size(408, 185)
Me.GroupBox1.TabIndex = 4
Me.GroupBox1.TabStop = False
'
'PictureBox1
'
Me.PictureBox1.Image = Global.frmSistemas.My.Resources.Resources.descarga
Me.PictureBox1.Location = New System.Drawing.Point(269, 35)
Me.PictureBox1.Name = "PictureBox1"
Me.PictureBox1.Size = New System.Drawing.Size(116, 116)
Me.PictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage
Me.PictureBox1.TabIndex = 5
Me.PictureBox1.TabStop = False
'
'btnAceptar
'
Me.btnAceptar.BackColor = System.Drawing.Color.White
Me.btnAceptar.Location = New System.Drawing.Point(225, 215)
Me.btnAceptar.Name = "btnAceptar"
Me.btnAceptar.Size = New System.Drawing.Size(75, 23)
Me.btnAceptar.TabIndex = 5
Me.btnAceptar.Text = "Aceptar"
Me.btnAceptar.UseVisualStyleBackColor = False
'
'frmAcercade
'
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.BackColor = System.Drawing.SystemColors.ControlLightLight
Me.ClientSize = New System.Drawing.Size(512, 250)
Me.Controls.Add(Me.btnAceptar)
Me.Controls.Add(Me.GroupBox1)
Me.Name = "frmAcercade"
Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen
Me.Text = "Acerca de..."
Me.GroupBox1.ResumeLayout(False)
CType(Me.PictureBox1, System.ComponentModel.ISupportInitialize).EndInit()
Me.ResumeLayout(False)
End Sub
Friend WithEvents GroupBox1 As GroupBox
Friend WithEvents PictureBox1 As PictureBox
Friend WithEvents btnAceptar As Button
End Class