diff --git a/WebWindow.Base/WebWindow.Base.csproj b/WebWindow.Base/WebWindow.Base.csproj
index 474b0a2..79c0055 100644
--- a/WebWindow.Base/WebWindow.Base.csproj
+++ b/WebWindow.Base/WebWindow.Base.csproj
@@ -6,7 +6,7 @@
net8.0
enable
enable
- 2.7.9.3015
+ 2.7.10.214
Annamaria Sassi
Egalware
Componente gestione JWD per LUX
@@ -16,3 +16,57 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/WebWindowComplex/ItemTable.cs b/WebWindowComplex/ItemTable.cs
index 7c6e185..b437138 100644
--- a/WebWindowComplex/ItemTable.cs
+++ b/WebWindowComplex/ItemTable.cs
@@ -61,6 +61,23 @@ namespace WebWindowComplex
}
}
+ ///
+ /// Indica l'indice rispetto al vettore dei fill
+ /// Se non è un fill vale -1
+ ///
+ private int m_numFill;
+ public int NumFill
+ {
+ get
+ {
+ return m_numFill;
+ }
+ set
+ {
+ m_numFill = value;
+ }
+ }
+
///
/// Indica l'indice rispetto al vettore delle sash
/// Se non è una sash vale -1
@@ -95,12 +112,13 @@ namespace WebWindowComplex
}
}
- public ItemTable(AreaTypes elementType, string s_description, int n_row, int n_col, int n_numSash, int n_numChild)
+ public ItemTable(AreaTypes elementType, string s_description, int n_row, int n_col, int n_numFill, int n_numSash, int n_numChild)
{
Type = elementType;
m_desc = s_description;
Row = n_row;
Col = n_col;
+ NumFill = n_numFill;
NumSash = n_numSash;
NumChild = n_numChild;
}
diff --git a/WebWindowComplex/TableComp.razor b/WebWindowComplex/TableComp.razor
index 2ae82aa..de68516 100644
--- a/WebWindowComplex/TableComp.razor
+++ b/WebWindowComplex/TableComp.razor
@@ -1,6 +1,6 @@