f4e4f26275
-inserito nuova finestra -aggiornato datagrid
18 lines
612 B
VB.net
18 lines
612 B
VB.net
Public Class MovePartInRawPartWndV
|
|
|
|
Private WithEvents m_MovePartInRawPartWndVM As MovePartInRawPartWndVM
|
|
|
|
Sub New(Owner As Window, MovePartInRawPartWndVM As MovePartInRawPartWndVM)
|
|
' This call is required by the designer.
|
|
InitializeComponent()
|
|
Me.DataContext = MovePartInRawPartWndVM
|
|
' Assegno al riferimento locale al VM il VM preso dal DataContext
|
|
m_MovePartInRawPartWndVM = MovePartInRawPartWndVM
|
|
End Sub
|
|
|
|
Private Sub CloseWindow(bDialogResult As Boolean) Handles m_MovePartInRawPartWndVM.m_CloseWindow
|
|
Me.DialogResult = bDialogResult
|
|
End Sub
|
|
|
|
End Class
|