@@ -44,7 +44,7 @@
Section
@if (!insertQty)
{
-
+ @*
*@
}
else
{
diff --git a/WebWindowComplex/Compo/AreaSashArcElem.razor.cs b/WebWindowComplex/Compo/AreaSashArcElem.razor.cs
index eff80f7..07e06d7 100644
--- a/WebWindowComplex/Compo/AreaSashArcElem.razor.cs
+++ b/WebWindowComplex/Compo/AreaSashArcElem.razor.cs
@@ -9,6 +9,9 @@ namespace WebWindowComplex.Compo
{
#region Public Properties
+ ///
+ /// Sash corrente
+ ///
[Parameter]
public Sash CurrSashGroup { get; set; } = null!;
@@ -19,25 +22,25 @@ namespace WebWindowComplex.Compo
#region Protected Properties
- protected int ArcElementQty
- {
- get => CurrSashGroup.SashArcElem.nQty;
- set
- {
- CurrSashGroup.SashArcElem.nQty = value;
- _ = EC_UpdatePreview.InvokeAsync(CurrSashGroup);
- }
- }
+ //protected int ArcElementQty
+ //{
+ // get => CurrSashGroup.SashArcElem.nQty;
+ // set
+ // {
+ // CurrSashGroup.SashArcElem.nQty = value;
+ // _ = EC_UpdatePreview.InvokeAsync(CurrSashGroup);
+ // }
+ //}
- protected double ArcSection
- {
- get => CurrSashGroup.SashArcElem.nSection;
- set
- {
- CurrSashGroup.SashArcElem.nSection = value;
- _ = EC_UpdatePreview.InvokeAsync(CurrSashGroup);
- }
- }
+ //protected double ArcSection
+ //{
+ // get => CurrSashGroup.SashArcElem.nSection;
+ // set
+ // {
+ // CurrSashGroup.SashArcElem.nSection = value;
+ // _ = EC_UpdatePreview.InvokeAsync(CurrSashGroup);
+ // }
+ //}
#endregion Protected Properties
@@ -48,11 +51,11 @@ namespace WebWindowComplex.Compo
insertQty = !insertQty;
}
- protected void IsCheckCutEdge()
- {
- CurrSashGroup.SashArcElem.bCutEdge = !CurrSashGroup.SashArcElem.bCutEdge;
- _ = EC_UpdatePreview.InvokeAsync(CurrSashGroup);
- }
+ //protected void IsCheckCutEdge()
+ //{
+ // CurrSashGroup.SashArcElem.bCutEdge = !CurrSashGroup.SashArcElem.bCutEdge;
+ // _ = EC_UpdatePreview.InvokeAsync(CurrSashGroup);
+ //}
protected string IsUsedQty()
{
diff --git a/WebWindowComplex/Compo/AreaSplit.razor.cs b/WebWindowComplex/Compo/AreaSplit.razor.cs
index a2d43a2..aba53c8 100644
--- a/WebWindowComplex/Compo/AreaSplit.razor.cs
+++ b/WebWindowComplex/Compo/AreaSplit.razor.cs
@@ -37,7 +37,7 @@ namespace WebWindowComplex.Compo
#region Private Methods
///
- /// Sollevo evento richiesta copia sash
+ /// Metodo per copiare sash
///
///
private async Task RaiseCopySash(int indexCurrSash)
@@ -53,7 +53,7 @@ namespace WebWindowComplex.Compo
}
///
- /// Sollevo evento richiesta aggiunta sash
+ /// Metodo per aggiungere prima sash
///
///
private async Task RaiseAddSash()
diff --git a/WebWindowComplex/Compo/CardArcElement.razor.cs b/WebWindowComplex/Compo/CardArcElement.razor.cs
index 19bc564..6d9646a 100644
--- a/WebWindowComplex/Compo/CardArcElement.razor.cs
+++ b/WebWindowComplex/Compo/CardArcElement.razor.cs
@@ -9,7 +9,7 @@ namespace WebWindowComplex.Compo
#region Public Properties
///
- /// Finestra corrente
+ /// Frame corrente
///
[Parameter]
public Frame CurrFrame { get; set; } = null!;
diff --git a/WebWindowComplex/Compo/CardFill.razor.cs b/WebWindowComplex/Compo/CardFill.razor.cs
index 5ee1ddc..7b5c001 100644
--- a/WebWindowComplex/Compo/CardFill.razor.cs
+++ b/WebWindowComplex/Compo/CardFill.razor.cs
@@ -37,7 +37,7 @@ namespace WebWindowComplex.Compo
#region Protected Methods
///
- /// Sollevo evento per cambiare solo il Fill corrente
+ /// Metodo per cambiare solo il Fill corrente
///
///
tipo di fill richiesto
///
@@ -52,7 +52,7 @@ namespace WebWindowComplex.Compo
#region Private Methods
///
- /// Sollevo evento per tornare alla pagina Tree
+ /// Metodo per tornare alla pagina Tree
///
private void ReqClose()
{
diff --git a/WebWindowComplex/Compo/CardFrame.razor.cs b/WebWindowComplex/Compo/CardFrame.razor.cs
index e49e527..f0b3b16 100644
--- a/WebWindowComplex/Compo/CardFrame.razor.cs
+++ b/WebWindowComplex/Compo/CardFrame.razor.cs
@@ -53,6 +53,9 @@ namespace WebWindowComplex.Compo
#region Protected Properties
+ ///
+ /// Metodo per selezionare shape
+ ///
protected int SelShapeIndex
{
get => CurrFrameWindow.SelShapeIndex;
@@ -79,6 +82,9 @@ namespace WebWindowComplex.Compo
}
}
+ ///
+ /// Selezione quantità bottom rail
+ ///
protected int FrameBottomRailQty
{
get => CurrFrameWindow.BottomRailQty;
@@ -106,7 +112,7 @@ namespace WebWindowComplex.Compo
#region Private Methods
///
- /// Sollevo evento richiesta aggiunta sash
+ /// Metodo per aggiungere sash
///
///
private async Task AddSash()
@@ -121,7 +127,7 @@ namespace WebWindowComplex.Compo
}
///
- /// Sollevo evento richiesta aggiunta window
+ /// Metodo per aggiungere window
///
///
private async Task AddSplit()
@@ -133,11 +139,12 @@ namespace WebWindowComplex.Compo
svgNoHw = true
};
await EC_ReqResetDictShape.InvokeAsync();
+ await EC_ReqOptionHw.InvokeAsync(CurrFrameWindow);
await EC_UpdatePreview.InvokeAsync(args);
}
///
- /// Sollevo evento richiesta copia sash
+ /// Metodo per cambiare tutti i joint
///
///
private async Task ChangeAllJoints(Json.WindowConst.Joints JointType, Area a)
@@ -188,7 +195,7 @@ namespace WebWindowComplex.Compo
}
///
- /// Report aggiornamento joint
+ /// Aggiornamento joint
///
///
///
@@ -209,6 +216,11 @@ namespace WebWindowComplex.Compo
}
}
+ ///
+ /// Metodo per la visualizzazione dei pulsanti joint
+ ///
+ ///
+ ///
private string ButtonJointCss(WebWindowComplex.Json.WindowConst.Joints type)
{
foreach (var item in CurrFrameWindow.JointList)
diff --git a/WebWindowComplex/Compo/CardSashGroup.razor b/WebWindowComplex/Compo/CardSashGroup.razor
index 9689706..aa9f8d7 100644
--- a/WebWindowComplex/Compo/CardSashGroup.razor
+++ b/WebWindowComplex/Compo/CardSashGroup.razor
@@ -115,7 +115,7 @@
-
diff --git a/WebWindowComplex/Compo/CardSashGroup.razor.cs b/WebWindowComplex/Compo/CardSashGroup.razor.cs
index 8e4f4a2..37dbb4c 100644
--- a/WebWindowComplex/Compo/CardSashGroup.razor.cs
+++ b/WebWindowComplex/Compo/CardSashGroup.razor.cs
@@ -51,7 +51,7 @@ namespace WebWindowComplex.Compo
public EventCallback
EC_ReqFirstOptionHw { get; set; }
///
- /// Evento per segnalare cambio hw e richiesta calcolo
+ /// Evento per segnalare aggiornamento
///
[Parameter]
public EventCallback EC_UpdatePreview { get; set; }
@@ -63,7 +63,7 @@ namespace WebWindowComplex.Compo
public List SashList { get; set; } = null!;
///
- /// Lista di sash
+ /// Frame corrente
///
[Parameter]
public Frame FrameWindow { get; set; } = null!;
@@ -188,7 +188,7 @@ namespace WebWindowComplex.Compo
#region Protected Methods
///
- /// Sollevo evento per rimuovere area
+ /// Metodo per rimuovere area
///
/// area da rimuovere
///
@@ -204,6 +204,11 @@ namespace WebWindowComplex.Compo
await EC_UpdateFrame.InvokeAsync(args);
}
+ ///
+ /// Metodo per scegliere tipo di misura
+ ///
+ ///
+ ///
protected async Task SetMeasureType(MeasureTypes type)
{
isOpen = !isOpen;
@@ -218,6 +223,11 @@ namespace WebWindowComplex.Compo
await EC_UpdatePreview.InvokeAsync(args);
}
+ ///
+ /// Metodo per aggiornare la sash dimension
+ ///
+ ///
+ ///
protected async Task UpdateSashDimension(SashDimension updateSD)
{
var currRec = CurrSashGroup.SashList.First(x => x.nSashId == updateSD.nSashId);
@@ -232,6 +242,11 @@ namespace WebWindowComplex.Compo
}
}
+ ///
+ /// Metodo per aggiornare sash
+ ///
+ ///
+ ///
protected async Task UpdateSash(Sash updateS)
{
if (updateS != null)
@@ -269,7 +284,7 @@ namespace WebWindowComplex.Compo
}
///
- /// Report aggiornamento Option Combo
+ /// Aggiornamento opzioni hardware
///
///
///
diff --git a/WebWindowComplex/Compo/CardSplit.razor b/WebWindowComplex/Compo/CardSplit.razor
index bffee85..bc3cb28 100644
--- a/WebWindowComplex/Compo/CardSplit.razor
+++ b/WebWindowComplex/Compo/CardSplit.razor
@@ -34,7 +34,7 @@
-
+ SetMeasureType(MeasureTypes.PROPORTIONAL)">
Proportional
@@ -99,7 +99,7 @@
@@ -197,14 +197,14 @@
EC_ReqClose="ReturnTree">
}
- else if (currStep == CompileStep.ArcElement)
+ @* else if (currStep == CompileStep.ArcElement)
{
- }
+ } *@