a0590a8269
- Aggiunti angoli d'inclinazione su disegno pezzi. - Iniziata implementazione gocciolatoi su disegno pezzi. - Migliorie varie.
14 lines
434 B
VB.net
14 lines
434 B
VB.net
Public Class SideEntityControlV
|
|
|
|
Private WithEvents m_SideEntityControlVM As SideEntityControlVM
|
|
|
|
Sub New(SideEntityControlVM As SideEntityControlVM)
|
|
' This call is required by the designer.
|
|
InitializeComponent()
|
|
Me.DataContext = SideEntityControlVM
|
|
' Assegno al riferimento locale al VM il VM preso dal DataContext
|
|
m_SideEntityControlVM = SideEntityControlVM
|
|
End Sub
|
|
|
|
End Class
|