Serializzazione hw option nel JWD

This commit is contained in:
Annamaria Sassi
2025-10-28 15:04:04 +01:00
parent 960d20e256
commit eaea52f45d
10 changed files with 175 additions and 55 deletions
+12 -4
View File
@@ -571,8 +571,6 @@ namespace WebWindowComplex
{
// reset editLock...
editLock = false;
// reset variabile errori
bError = false;
listErrPre = new Dictionary<string, string>();
listErrLink = new Dictionary<string, string>();
listWarnings = new Dictionary<string, string>();
@@ -732,6 +730,10 @@ namespace WebWindowComplex
}
}
/// <summary>
/// Metodo per costruire oggetti della Window
/// </summary>
/// <param name="WindowFromJson"></param>
protected void setCurrWindow(JsonWindow WindowFromJson)
{
if (m_CurrWindow != null)
@@ -812,8 +814,6 @@ namespace WebWindowComplex
#region Private Fields
private bool bError = false;
private int currAnta = 0;
private int currFill = -1;
@@ -900,6 +900,10 @@ namespace WebWindowComplex
//await DoPreviewSvg();
}
/// <summary>
/// Metodo per aggiungere una sash di default al Frame
/// </summary>
/// <param name="f"></param>
private void AddSashToFrame(Frame f)
{
f.AddFirstSash();
@@ -910,6 +914,10 @@ namespace WebWindowComplex
_ = DoReqShape(reqList);
}
/// <summary>
/// Metodo per aggiungere uno split di default al Frame
/// </summary>
/// <param name="f"></param>
private void AddSplitToFrame(Frame f)
{
f.AddSplit();