891bbd4a08
Corretta sezione Rimossa selezione grezzo Gestione blocco interfaccia su verifica e simula Aggiunta correzione con cancellazione cartelle progetti Tolto ricaricmento progetto nel passaggio da proj a prod Iniziat studio esportazione statistiche Migliorati messaggi su nesting Cambiata gestione tipo progetto
23 lines
523 B
VB.net
23 lines
523 B
VB.net
Public Class PartManagerVM
|
|
Inherits VMBase
|
|
|
|
Private m_PartManager_IsEnabled As Boolean = True
|
|
Public ReadOnly Property PartManager_IsEnabled As Boolean
|
|
Get
|
|
Return m_PartManager_IsEnabled
|
|
End Get
|
|
End Property
|
|
|
|
Sub New()
|
|
' salvo riferimento in Map
|
|
Map.SetRefPartManagerVM(Me)
|
|
End Sub
|
|
|
|
|
|
Friend Sub SetPartManagerIsEnabled(bIsEnabled As Boolean)
|
|
m_PartManager_IsEnabled = bIsEnabled
|
|
NotifyPropertyChanged(NameOf(PartManager_IsEnabled))
|
|
End Sub
|
|
|
|
End Class
|