''' ''' Provides application-specific behavior to supplement the default Application class. ''' NotInheritable Class App Inherits Application ''' ''' Initializes a new instance of the App class. ''' Public Sub New() InitializeComponent() Microsoft.ApplicationInsights.WindowsAppInitializer.InitializeAsync( Microsoft.ApplicationInsights.WindowsCollectors.Metadata Or Microsoft.ApplicationInsights.WindowsCollectors.Session) End Sub ''' ''' Invoked when the application is launched normally by the end user. Other entry points ''' will be used when the application is launched to open a specific file, to display ''' search results, and so forth. ''' ''' Details about the launch request and process. Protected Overrides Sub OnLaunched(e As Windows.ApplicationModel.Activation.LaunchActivatedEventArgs) #If DEBUG Then ' Show graphics profiling information while debugging. If System.Diagnostics.Debugger.IsAttached Then ' Display the current frame rate counters Me.DebugSettings.EnableFrameRateCounter = True End If #End If Dim rootFrame As Frame = TryCast(Window.Current.Content, Frame) ' Do not repeat app initialization when the Window already has content, ' just ensure that the window is active If rootFrame Is Nothing Then ' Create a Frame to act as the navigation context and navigate to the first page rootFrame = New Frame() AddHandler rootFrame.NavigationFailed, AddressOf OnNavigationFailed If e.PreviousExecutionState = ApplicationExecutionState.Terminated Then ' TODO: Load state from previously suspended application End If ' Place the frame in the current Window Window.Current.Content = rootFrame End If If rootFrame.Content Is Nothing Then ' When the navigation stack isn't restored navigate to the first page, ' configuring the new page by passing required information as a navigation ' parameter rootFrame.Navigate(GetType(GamePage), e.Arguments) End If ' Ensure the current window is active Window.Current.Activate() End Sub ''' ''' Invoked when Navigation to a certain page fails ''' ''' The Frame which failed navigation ''' Details about the navigation failure Private Sub OnNavigationFailed(sender As Object, e As NavigationFailedEventArgs) Throw New Exception("Failed to load Page " + e.SourcePageType.FullName) End Sub ''' ''' Invoked when application execution is being suspended. Application state is saved ''' without knowing whether the application will be terminated or resumed with the contents ''' of memory still intact. ''' ''' The source of the suspend request. ''' Details about the suspend request. Private Sub OnSuspending(sender As Object, e As SuspendingEventArgs) Handles Me.Suspending Dim deferral As SuspendingDeferral = e.SuspendingOperation.GetDeferral() ' TODO: Save application state and stop any background activity deferral.Complete() End Sub End Class