Files
egtbeamwall/EgtBEAMWALL.Optimizer/GeneralParametersStrategy/GeneralParametersWnd.xaml.vb
T
Demetrio Cassarino f4e2167c9b -terminato parametri generali
-corretto alcuni bug
2025-10-10 15:50:09 +02:00

31 lines
800 B
VB.net

Public Class GeneralParametersWnd
#Region "FIELDS & PROPERTIES"
Private WithEvents m_GeneralParametersWndVM As GeneralParametersWndVM
#End Region ' Fields & Properties
#Region "CONSTRUCTOR"
Sub New(Owner As Window, GeneralParametersWndVM As GeneralParametersWndVM)
MyBase.New(Owner)
' This call is required by the designer.
InitializeComponent()
Me.DataContext = GeneralParametersWndVM
' Assegno al riferimento locale al VM il VM preso dal DataContext
m_GeneralParametersWndVM = GeneralParametersWndVM
End Sub
#End Region ' Constructor
#Region "EVENTS"
Private Sub CloseWindow(bDialogResult As Boolean) Handles m_GeneralParametersWndVM.m_CloseWindow
Me.DialogResult = bDialogResult
End Sub
#End Region ' Events
End Class