Files
OmagCUT/AboutBoxWD.xaml.vb
T
Emmanuele Sassi ec6b237c59 OmagCUT :
- Aggiunto AboutBox.
- Aggiunti bottoni tastatura disco e grezzo.
2016-02-11 14:01:24 +00:00

26 lines
826 B
VB.net

Imports EgtUILib
Public Class AboutBoxWD
Sub New(Owner As Window)
' This call is required by the designer.
InitializeComponent()
' Add any initialization after the InitializeComponent() call.
Me.Owner = Owner
Me.Top = Owner.Top + (Owner.Height / 2 - Me.Height / 2)
Me.Left = Owner.Left + (Owner.Width / 2 - Me.Width / 2)
Me.ShowDialog()
End Sub
Private Sub AboutBoxWD_Initialized(sender As Object, e As EventArgs) Handles Me.Initialized
DescriptionLbl.Text = My.Application.Info.Description.ToString()
VersionLbl.Text = "Versione: " + My.Application.Info.Version.ToString()
CopirightLbl.Text = My.Application.Info.Copyright.ToString()
ExitBtn.Content = EgtMsg(MSG_MISSINGKEYWD + 4) 'Ok
End Sub
End Class