Files
OmagVIEWPlus/Application.xaml.vb
T
Emmanuele Sassi e6d051c9a2 OmagVIEWPlus 2.1b1 :
- Primo rilascio
2019-02-27 08:26:22 +00:00

15 lines
463 B
VB.net

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
Me.MainWindow.Show()
End Sub
End Class