Nessuna descrizione
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.

SplashScreen1.vb 1.8KB

1234567891011121314151617181920212223242526272829303132333435
  1. Public NotInheritable Class SplashScreen1
  2. 'TODO: 您可以在專案設計工具的 [應用程式] 索引標籤中 (位於 [專案] 功能表下的 [屬性]),輕易地將這個表單設定成
  3. ' 應用程式的啟動顯示畫面。
  4. Private Sub SplashScreen1_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
  5. '在執行階段中,根據應用程式的組件資訊,設定對話方塊文字。
  6. 'TODO: 在專案屬性對話方塊 (位於 [專案] 功能表下) 的 [應用程式] 窗格中
  7. ' 自訂應用程式的組件資訊。
  8. '應用程式標題
  9. If My.Application.Info.Title <> "" Then
  10. ApplicationTitle.Text = My.Application.Info.Title
  11. Else
  12. '如果應用程式標題遺失,請使用不含副檔名的應用程式名稱
  13. ApplicationTitle.Text = System.IO.Path.GetFileNameWithoutExtension(My.Application.Info.AssemblyName)
  14. End If
  15. '利用設計階段在 Version 控制中設定的文字做為格式字串,來格式化版本資訊。
  16. ' 這種方式可以讓您視需要提供有效的當地語系化設定。
  17. ' 您可以使用下列程式碼,並將 Version 控制的設計階段文字改成
  18. ' "Version {0}.{1:00}.{2}.{3}" 或其他類似字串,以包括組建和修訂資訊。如需
  19. ' 詳細資訊,請參閱 [說明] 中的 String.Format()。
  20. '
  21. ' Version.Text = System.String.Format(Version.Text, My.Application.Info.Version.Major, My.Application.Info.Version.Minor, My.Application.Info.Version.Build, My.Application.Info.Version.Revision)
  22. Version.Text = "版本 : " & 版本
  23. '著作權資訊
  24. Copyright.Text = "著作權 - 工巧明智能設備有限公司所有"
  25. End Sub
  26. End Class