Files
effector.plugin.fivelakes/Supervisor.Plugin.FiveLakes/ProcessManager/ProcessManagerV.xaml.vb
T
Emmanuele Sassi 296e18704e - funzione che restituisce prossima porta aggiorna lo stato
- aggiunta funzione PlgExecProcess
- aggiunti bottoni di scrittura variabili macchina
- aggiunta finestrella statistiche processi
2024-08-23 19:04:41 +02:00

19 lines
586 B
VB.net

Public Class ProcessManagerV
Private WithEvents m_ProcessManagerVM As ProcessManagerVM
Sub New(Owner As Window, ProcessManagerVM As ProcessManagerVM)
'MyBase.New(Owner)
' This call is required by the designer.
InitializeComponent()
Me.DataContext = ProcessManagerVM
' Assegno al riferimento locale al VM il VM preso dal DataContext
m_ProcessManagerVM = ProcessManagerVM
End Sub
'Private Sub CloseWindow(bDialogResult As Boolean) Handles m_ProcessManagerVM.m_CloseWindow
' Me.DialogResult = bDialogResult
'End Sub
End Class