_ Partial Class AboutBox1 Inherits System.Windows.Forms.Form 'Form esegue l'override del metodo Dispose per pulire l'elenco dei componenti. _ 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 'Richiesto da Progettazione Windows Form Private components As System.ComponentModel.IContainer 'NOTA: la procedura che segue è richiesta da Progettazione Windows Form 'Può essere modificata in Progettazione Windows Form. 'Non modificarla nell'editor del codice. _ Private Sub InitializeComponent() Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(AboutBox1)) Me.LogoPictureBox = New System.Windows.Forms.PictureBox() Me.OKButton = New System.Windows.Forms.Button() Me.LabelCompanyName = New System.Windows.Forms.Label() Me.LabelCopyright = New System.Windows.Forms.Label() Me.LabelVersion = New System.Windows.Forms.Label() Me.LabelProductName = New System.Windows.Forms.Label() CType(Me.LogoPictureBox, System.ComponentModel.ISupportInitialize).BeginInit() Me.SuspendLayout() ' 'LogoPictureBox ' Me.LogoPictureBox.Image = CType(resources.GetObject("LogoPictureBox.Image"), System.Drawing.Image) Me.LogoPictureBox.Location = New System.Drawing.Point(23, 40) Me.LogoPictureBox.Name = "LogoPictureBox" Me.LogoPictureBox.Size = New System.Drawing.Size(52, 52) Me.LogoPictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage Me.LogoPictureBox.TabIndex = 0 Me.LogoPictureBox.TabStop = False ' 'OKButton ' Me.OKButton.DialogResult = System.Windows.Forms.DialogResult.Cancel Me.OKButton.Location = New System.Drawing.Point(105, 114) Me.OKButton.Name = "OKButton" Me.OKButton.Size = New System.Drawing.Size(75, 19) Me.OKButton.TabIndex = 0 Me.OKButton.Text = "&OK" ' 'LabelCompanyName ' Me.LabelCompanyName.Location = New System.Drawing.Point(108, 77) Me.LabelCompanyName.Margin = New System.Windows.Forms.Padding(6, 0, 3, 0) Me.LabelCompanyName.MaximumSize = New System.Drawing.Size(152, 17) Me.LabelCompanyName.MinimumSize = New System.Drawing.Size(152, 17) Me.LabelCompanyName.Name = "LabelCompanyName" Me.LabelCompanyName.Size = New System.Drawing.Size(152, 17) Me.LabelCompanyName.TabIndex = 0 Me.LabelCompanyName.Text = "Nome società" Me.LabelCompanyName.TextAlign = System.Drawing.ContentAlignment.MiddleLeft ' 'LabelCopyright ' Me.LabelCopyright.Location = New System.Drawing.Point(108, 60) Me.LabelCopyright.Margin = New System.Windows.Forms.Padding(6, 0, 3, 0) Me.LabelCopyright.MaximumSize = New System.Drawing.Size(152, 17) Me.LabelCopyright.MinimumSize = New System.Drawing.Size(152, 17) Me.LabelCopyright.Name = "LabelCopyright" Me.LabelCopyright.Size = New System.Drawing.Size(152, 17) Me.LabelCopyright.TabIndex = 0 Me.LabelCopyright.Text = "Copyright" Me.LabelCopyright.TextAlign = System.Drawing.ContentAlignment.MiddleLeft ' 'LabelVersion ' Me.LabelVersion.Location = New System.Drawing.Point(108, 43) Me.LabelVersion.Margin = New System.Windows.Forms.Padding(6, 0, 3, 0) Me.LabelVersion.MaximumSize = New System.Drawing.Size(152, 17) Me.LabelVersion.MinimumSize = New System.Drawing.Size(152, 17) Me.LabelVersion.Name = "LabelVersion" Me.LabelVersion.Size = New System.Drawing.Size(152, 17) Me.LabelVersion.TabIndex = 0 Me.LabelVersion.Text = "Versione" Me.LabelVersion.TextAlign = System.Drawing.ContentAlignment.MiddleLeft ' 'LabelProductName ' Me.LabelProductName.Location = New System.Drawing.Point(108, 26) Me.LabelProductName.Margin = New System.Windows.Forms.Padding(6, 0, 3, 0) Me.LabelProductName.MaximumSize = New System.Drawing.Size(152, 17) Me.LabelProductName.MinimumSize = New System.Drawing.Size(152, 17) Me.LabelProductName.Name = "LabelProductName" Me.LabelProductName.Size = New System.Drawing.Size(152, 17) Me.LabelProductName.TabIndex = 0 Me.LabelProductName.Text = "Nome prodotto" Me.LabelProductName.TextAlign = System.Drawing.ContentAlignment.MiddleLeft ' 'AboutBox1 ' Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!) Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font Me.CancelButton = Me.OKButton Me.ClientSize = New System.Drawing.Size(284, 148) Me.Controls.Add(Me.LogoPictureBox) Me.Controls.Add(Me.OKButton) Me.Controls.Add(Me.LabelCompanyName) Me.Controls.Add(Me.LabelCopyright) Me.Controls.Add(Me.LabelVersion) Me.Controls.Add(Me.LabelProductName) Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon) Me.MaximizeBox = False Me.MinimizeBox = False Me.Name = "AboutBox1" Me.Padding = New System.Windows.Forms.Padding(9) Me.ShowInTaskbar = False Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent Me.Text = "AboutBox1" Me.TopMost = True CType(Me.LogoPictureBox, System.ComponentModel.ISupportInitialize).EndInit() Me.ResumeLayout(False) End Sub Friend WithEvents LogoPictureBox As System.Windows.Forms.PictureBox Friend WithEvents OKButton As System.Windows.Forms.Button Friend WithEvents LabelCompanyName As System.Windows.Forms.Label Friend WithEvents LabelCopyright As System.Windows.Forms.Label Friend WithEvents LabelVersion As System.Windows.Forms.Label Friend WithEvents LabelProductName As System.Windows.Forms.Label End Class