You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.6 KiB
34 lines
1.6 KiB
Public NotInheritable Class frmAbout
|
|
|
|
Private Sub frmAbout_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
|
|
' Legen Sie den Titel des Formulars fest.
|
|
Dim ApplicationTitle As String
|
|
If My.Application.Info.Title <> "" Then
|
|
ApplicationTitle = My.Application.Info.Title
|
|
Else
|
|
ApplicationTitle = System.IO.Path.GetFileNameWithoutExtension(My.Application.Info.AssemblyName)
|
|
End If
|
|
Me.Text = String.Format("Info {0}", ApplicationTitle)
|
|
' Initialisieren Sie den gesamten Text, der im Infofeld angezeigt wird.
|
|
' TODO: Die Assemblyinformationen der Anwendung im Bereich "Anwendung" des Dialogfelds für die
|
|
' Projekteigenschaften (im Menü "Projekt") anpassen.
|
|
Me.LabelProductName.Text = My.Application.Info.ProductName
|
|
Me.LabelVersion.Text = String.Format("Version {0}", My.Application.Info.Version.ToString)
|
|
Me.LabelCopyright.Text = My.Application.Info.Copyright
|
|
Me.LabelCompanyName.Text = My.Application.Info.CompanyName
|
|
Me.TextBoxDescription.Text = My.Application.Info.Description
|
|
End Sub
|
|
|
|
Private Sub OKButton_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles OKButton.Click
|
|
Me.Close()
|
|
End Sub
|
|
|
|
Private Sub lnkWebsite_LinkClicked(sender As Object, e As LinkLabelLinkClickedEventArgs) Handles lnkWebsite.LinkClicked
|
|
Process.Start("http://tmsn.at/?tools&gaesteliste")
|
|
End Sub
|
|
|
|
Private Sub lblInfoBetaSoftware_MouseEnter(sender As Object, e As EventArgs)
|
|
Me.lblInfoBetaSoftware.ForeColor = Color.Red
|
|
End Sub
|
|
End Class
|