- Possibilità di nascondere figli multipli nella pagina con la gerarchia

- Gestione bottom rail del frame
This commit is contained in:
Annamaria Sassi
2026-02-10 12:17:00 +01:00
parent 3d092b53fb
commit a898ccced5
9 changed files with 377 additions and 63 deletions
+6 -2
View File
@@ -101,9 +101,13 @@ namespace WebWindowComplex.Models
public void AddFirstSash()
{
// Salvo il parent
if(this is Frame)
if(this is Frame || ParentArea.AreaList.Last().Equals(this))
{
Frame f = (Frame)this;
Frame f = null;
if (this is Frame)
f = (Frame)this;
else
f = (Frame)ParentWindow.AreaList.First();
f.BottomRailQty = 0;
f.BottomRailElemDimList.Clear();
}