Effector.Plugin.StoneCut 3.1.5.7:

- primo rilascio dopo prove su macchina
This commit is contained in:
Emmanuele Sassi
2026-05-05 13:19:32 +02:00
parent 4ecfc1c6dc
commit 5ce2c38baa
78 changed files with 8394 additions and 0 deletions
@@ -0,0 +1,19 @@
Public Class ProcessManagerV
Private WithEvents m_ProcessManagerVM As ProcessManagerVM
Sub New(Owner As Window, ProcessManagerVM As ProcessManagerVM)
'MyBase.New(Owner)
Me.Owner = 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