19 lines
498 B
VB.net
19 lines
498 B
VB.net
Public Class HelpWndV
|
|
|
|
Private WithEvents m_HelpWndVM As HelpWndVM
|
|
|
|
Sub New(Owner As Window, HelpWndVM As HelpWndVM)
|
|
MyBase.New(Owner)
|
|
' This call is required by the designer.
|
|
InitializeComponent()
|
|
Me.DataContext = HelpWndVM
|
|
' Assegno al riferimento locale al VM il VM preso dal DataContext
|
|
m_HelpWndVM = HelpWndVM
|
|
End Sub
|
|
|
|
Private Sub CloseWindow(bDialogResult As Boolean) Handles m_HelpWndVM.m_CloseWindow
|
|
Me.Close()
|
|
End Sub
|
|
|
|
End Class
|