-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFrmAPropos.vb
27 lines (23 loc) · 1.25 KB
/
FrmAPropos.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
Public NotInheritable Class FrmAPropos
Private Sub FrmAPropos_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
' Définissez le titre du formulaire.
'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("À propos de {0}", ApplicationTitle)
' Initialisez tout le texte affiché dans la boîte de dialogue À propos de.
Me.LabelProductName.Text = My.Application.Info.ProductName
Me.LabelVersion.Text = 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)
Me.Close()
End Sub
Private Sub TableLayoutPanel_Paint(ByVal sender As System.Object, ByVal e As System.Windows.Forms.PaintEventArgs)
End Sub
End Class