EgtDOORCreator 2.1j1 :

-> ho tolto dalla OptionPage il tab che si riferisce alle dimensioni dell'Hardware e ho ripristinato il bottone nella barra dei comandi della grafica;
-> ho sostituito i bottoni "Hardware" e "Door" con due RadioButton, cambiata anche la posizione;
-> ho aggiornato le icone "SaveAs" e "HardwarePart".
This commit is contained in:
Nicola Pievani
2019-10-15 07:51:28 +00:00
parent 7c6683cc15
commit c207c6f583
24 changed files with 213 additions and 47 deletions
+19 -1
View File
@@ -179,7 +179,13 @@ Public Class ProjectManagerVM
Public ReadOnly Property HardwareToolTip As String
Get
' Hardware
Return EgtMsg(50413)
Return EgtMsg(50413).ToUpper
End Get
End Property
Public ReadOnly Property DoorToolTip As String
Get
' Door
Return EgtMsg(50308).ToUpper
End Get
End Property
@@ -1223,8 +1229,20 @@ Public Class ProjectManagerVM
CompoMatch.LoadTableGeometry()
Map.refHardwareHelpSceneHostV.CleanHelpProject()
Map.refRefreshPanelVM.ButtonVisibility = Visibility.Collapsed
Map.refRefreshPanelVM.DimensionVisibility = Visibility.Visible
Map.refProjectManagerHardwareVM.HardwareIsChecked = True
End Sub
Private m_DoorIsChecked As Boolean =True
Public Property DoorIsChecked As Boolean
Get
Return m_DoorIsChecked
End Get
Set(value As Boolean)
m_DoorIsChecked = value
NotifyPropertyChanged("DoorIsChecked")
End Set
End Property
#End Region ' Hardware