Files
EgtDOORCreator/HardwareGeometry/GeomtryListConfigV.xaml.vb
Nicola Pievani 48eee073a2 EgtDoorCreator 1.9e1:
- crea nuovi brand
- selezione file nge
2018-05-28 16:34:48 +00:00

13 lines
436 B
VB.net

Public Class GeometryListConfigV
Private m_GeometryListVM As GeometryListConfigVM
Sub New(Owner As Window, GeometryListVM As GeometryListConfigVM)
MyBase.New(Owner)
' This call is required by the designer.
InitializeComponent()
' Add any initialization after the InitializeComponent() call.
Me.DataContext = GeometryListVM
m_GeometryListVM = GeometryListVM
End Sub
End Class