Files
egtstone3d/SelOption/SelOptionV.xaml.vb
Demetrio Cassarino 2533192b24 -aggiunto popup view
-pulito codice
2025-01-14 12:32:00 +01:00

21 lines
392 B
VB.net

Public Class SelOptionV
#Region "FIELDS & PROPERTIES"
Private m_SelOptionVM As SelOptionVM
#End Region ' Fields & Properties
#Region "CONSTRUCTOR"
Sub New()
' La chiamata è richiesta dalla finestra di progettazione.
InitializeComponent()
m_SelOptionVM = New SelOptionVM
Me.DataContext = m_SelOptionVM
End Sub
#End Region ' Constructor
End Class