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
@@ -110,7 +110,13 @@ Public Class ProjectManagerHardwareVM
Public ReadOnly Property DoorToolTip As String
Get
' Door
Return EgtMsg(50308)
Return EgtMsg(50308).ToUpper
End Get
End Property
Public ReadOnly Property HardwareToolTip As String
Get
' Hardware
Return EgtMsg(50413).ToUpper
End Get
End Property
Public ReadOnly Property NewDirToolTip As String
@@ -532,6 +538,7 @@ Public Class ProjectManagerHardwareVM
Map.refCompoPanelVM.GoBackVisibility = Visibility.Collapsed
Map.refMainWindowVM.ProjectNameMsg = ""
End If
Map.refRefreshPanelVM.DimensionVisibility = Visibility.Collapsed
' elimino i riferimenti all'hardware corrente
Map.refHardwarePageVM.CurrHardware = Nothing
' spengo il focus su tutti i bottoni
@@ -542,11 +549,22 @@ Public Class ProjectManagerHardwareVM
ShowDimensionCommand = Visibility.Collapsed
' apro l'ultimo progetto
LauncherModule.InitLauncherModule()
Map.refProjectManagerVM.DoorIsChecked = true
Map.refProjectManagerVM.OpenLastProject()
Map.refSceneManagerVM.RefreshBtn()
CompoMatch.ResetSTU()
End Sub
Private m_HardwareIsChecked As Boolean =True
Public Property HardwareIsChecked As Boolean
Get
Return m_HardwareIsChecked
End Get
Set(value As Boolean)
m_HardwareIsChecked = value
NotifyPropertyChanged("HardwareIsChecked")
End Set
End Property
#End Region ' LastProject