-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
11,429 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
Imports Microsoft.VisualBasic.ApplicationServices | ||
|
||
Namespace My | ||
' The following events are available for MyApplication: | ||
' Startup: Raised when the application starts, before the startup form is created. | ||
' Shutdown: Raised after all application forms are closed. This event is not raised if the application terminates abnormally. | ||
' UnhandledException: Raised if the application encounters an unhandled exception. | ||
' StartupNextInstance: Raised when launching a single-instance application and the application is already active. | ||
' NetworkAvailabilityChanged: Raised when the network connection is connected or disconnected. | ||
|
||
' **NEW** ApplyApplicationDefaults: Raised when the application queries default values to be set for the application. | ||
|
||
' Example: | ||
' Private Sub MyApplication_ApplyApplicationDefaults(sender As Object, e As ApplyApplicationDefaultsEventArgs) Handles Me.ApplyApplicationDefaults | ||
' | ||
' ' Setting the application-wide default Font: | ||
' e.Font = New Font(FontFamily.GenericSansSerif, 12, FontStyle.Regular) | ||
' | ||
' ' Setting the HighDpiMode for the Application: | ||
' e.HighDpiMode = HighDpiMode.PerMonitorV2 | ||
' | ||
' ' If a splash dialog is used, this sets the minimum display time: | ||
' e.MinimumSplashScreenDisplayTime = 4000 | ||
' End Sub | ||
|
||
Partial Friend Class MyApplication | ||
|
||
End Class | ||
End Namespace |
Binary file not shown.
Oops, something went wrong.