- aggiunto enum per il tipo di part

- migliorato l'UC per l'edit delle paretine
- migliorata la gestinoe degli UC
- aggiunta gestione dei click per l'edit paretina
- aggiunta la proprietà indice del selezionato per la comboBoxParam
- upgrade per lo spessore delle linee negli SVG.
This commit is contained in:
Daniele Bariletti
2025-02-13 10:07:57 +01:00
parent 152e1baba1
commit 68e2cc5c08
6 changed files with 188 additions and 20 deletions
+11
View File
@@ -354,6 +354,17 @@ Public Class _ComboBoxParam
m_SelParamCmBx = value
RaiseEvent SelectionChanged(Me, m_SelParamCmBx)
NotifyPropertyChanged(NameOf(SelParamCmBx))
IndexSelParamCmBx = ParamCmBxList.FindIndex(Function(x As ParamCmBx) x.Name = m_SelParamCmBx.Name)
End Set
End Property
Private m_IndexSelParamCmBx As Integer
Public Property IndexSelParamCmBx As Integer
Get
Return m_IndexSelParamCmBx
End Get
Set(value As Integer)
m_IndexSelParamCmBx = value
End Set
End Property