Files
egtbeamwall/EgtBEAMWALL.Optimizer/PartParametersWnd/PartParametersWndV.xaml.vb
T
Emmanuele Sassi 7e668565eb - aggiunto debug ExecProcess
- inizio correzione Parametri pezzo
2026-06-01 18:48:12 +02:00

19 lines
643 B
VB.net

Public Class PartParametersWndV
Private WithEvents m_PartParametersWndVM As PartParametersWndVM
Sub New(Owner As Window, PartParametersWndVM As PartParametersWndVM)
' This call is required by the designer.
InitializeComponent()
Me.DataContext = PartParametersWndVM
Me.Tag = Map.refProjectVM.BTLStructureVM.SelBTLPart
' Assegno al riferimento locale al VM il VM preso dal DataContext
m_PartParametersWndVM = PartParametersWndVM
End Sub
Private Sub CloseWindow(bDialogResult As Boolean) Handles m_PartParametersWndVM.m_CloseWindow
Me.DialogResult = bDialogResult
End Sub
End Class