Files
egtstone3d/SplashScreen/SplashScreenV.xaml.vb
2025-01-16 15:24:29 +01:00

15 lines
544 B
VB.net

Public Class SplashScreenV
#Region "FIELDS & PROPERTIES"
Private Sub SplashScreen_Initialized(sender As Object, e As EventArgs) Handles Me.Initialized
VersionTxBl.Text = "Version " & My.Application.Info.Version.Major.ToString() &
"." & My.Application.Info.Version.Minor.ToString() &
(ChrW(97 - 1 + My.Application.Info.Version.Build)).ToString() &
My.Application.Info.Version.Revision.ToString()
End Sub
#End Region ' Fields & Properties
End Class