Skip to content

Instantly share code, notes, and snippets.

@canokay
Created August 24, 2018 12:13
Show Gist options
  • Save canokay/ec529f099e9450f9c569038b4b80ac29 to your computer and use it in GitHub Desktop.
Save canokay/ec529f099e9450f9c569038b4b80ac29 to your computer and use it in GitHub Desktop.
Splash Screen Time
Imports System.Collections.ObjectModel
Namespace My
Partial Friend Class MyApplication
Protected Overrides Function OnInitialize(commandLineArgs As ReadOnlyCollection(Of String)) As Boolean
Me.MinimumSplashScreenDisplayTime = 7500
Return MyBase.OnInitialize(commandLineArgs)
End Function
End Class
End Namespace
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment