Files
EgtDOORCreator/Application.xaml.vb
Nicola Pievani e2cdd82d63 EgtDOORCreator 2.2d1:
-> correzione apertura ddf in modalità assemblato
-> conversione di porte in assembalto
-> gestione dei materiali e delle proprietà
2020-04-24 16:42:00 +00:00

19 lines
615 B
VB.net

Imports EgtWPFLib5
Imports EgtUILib
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