Files
EgtDOORCreator/Application.xaml.vb
T
Nicola Pievani 1ed61c0d4a EtDOORCreator 1.9b6 :
- gestione delle profondità dei fori con una classe nuova,
- conversione delle del carattere "/" → "\" dei direttori caricati e letti.
2018-03-02 18:42:40 +00:00

16 lines
575 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 System.Windows.StartupEventArgs)
MyBase.OnStartup(e)
ShutdownMode = System.Windows.ShutdownMode.OnMainWindowClose
' Creo la View principale
Me.MainWindow = New MainWindowV
System.Windows.Forms.Integration.ElementHost.EnableModelessKeyboardInterop(Me.MainWindow)
' Mostro la View principale
Me.MainWindow.Show()
End Sub
End Class