2648b704cc
- piccoli aggiustamenti a ExecuteWindow.
19 lines
556 B
VB.net
19 lines
556 B
VB.net
Public Class CurrSetUpV
|
|
|
|
Private WithEvents m_CurrSetUpVM As CurrSetUpVM
|
|
|
|
Sub New(Owner As Window, CurrSetUpVM As CurrSetUpVM)
|
|
MyBase.New(Owner)
|
|
' This call is required by the designer.
|
|
InitializeComponent()
|
|
Me.DataContext = CurrSetUpVM
|
|
' Assegno al riferimento locale al VM il VM preso dal DataContext
|
|
m_CurrSetUpVM = CurrSetUpVM
|
|
End Sub
|
|
|
|
'Private Sub CloseWindow(bDialogResult As Boolean) Handles m_SetUpDbVM.OnCloseWindow
|
|
' Me.DialogResult = bDialogResult
|
|
'End Sub
|
|
|
|
End Class
|