9bec5d4b13
- correzione DisplayIndex quando manca definizione colonna in xaml - creata DemoApplication per dimostrazione e test dei componenti
22 lines
420 B
VB.net
22 lines
420 B
VB.net
Class MainWindowV
|
|
|
|
Private m_MainWindowVM As MainWindowVM
|
|
|
|
#Region "CONSTRUCTOR"
|
|
|
|
Sub New()
|
|
m_MainWindowVM = New MainWindowVM
|
|
' Funzione che interpreta l'xaml
|
|
InitializeComponent()
|
|
Me.DataContext = m_MainWindowVM
|
|
AddHandler Me.Closing, AddressOf Me_Closing
|
|
End Sub
|
|
|
|
#End Region ' CONSTRUCTOR
|
|
|
|
Private Sub Me_Closing()
|
|
m_MainWindowVM.OnClosed()
|
|
End Sub
|
|
|
|
End Class
|