- Aggiunto componente Hw Option e sua gestione

- Utilizzate liste nei select (forma frame, tipo apertura sash,  forma split)
This commit is contained in:
Annamaria Sassi
2025-11-03 15:27:41 +01:00
parent 0caf3ef83b
commit 86f3d59a98
17 changed files with 238 additions and 220 deletions
+5 -3
View File
@@ -79,11 +79,13 @@ namespace WebWindowComplex.Models
{
get
{
return IdNameStruct.IndFromId((int)m_Shape, m_ShapeList);
//return IdNameStruct.IndFromId((int)m_Shape, m_ShapeList);
return (int)m_Shape;
}
set
{
Shapes SelShape = (Shapes)IdNameStruct.IdFromInd(value, m_ShapeList);
//Shapes SelShape = (Shapes)IdNameStruct.IdFromInd(value, m_ShapeList);
Shapes SelShape = (Shapes)value;
if (m_Shape != SelShape)
{
// salvo vecchie dimensioni
@@ -194,7 +196,7 @@ namespace WebWindowComplex.Models
}
m_Shape = SelShape;
}
m_ParentWindow.OnUpdatePreview(m_ParentWindow.sSerialized());
//m_ParentWindow.OnUpdatePreview(m_ParentWindow.sSerialized());
}
}