Files
OmagPHOTO/Application.xaml.vb

22 lines
575 B
VB.net

Imports EgtPHOTOLib
Class Application
' Application-level events, such as Startup, Exit, and DispatcherUnhandledException
' can be handled in this file.
Protected Overrides Sub OnStartup(e As StartupEventArgs)
MyBase.OnStartup(e)
ShutdownMode = System.Windows.ShutdownMode.OnMainWindowClose
' Creo la View principale
Me.MainWindow = New MainWindowV
' Mostro la View principale
If PhotoMap.ContinueApplication Then
Me.MainWindow.Show()
Else
End
End If
End Sub
End Class