Files
webwindowconfigurator/WebWindowComplex/AreaSplit.razor.cs
T
2025-10-10 16:47:28 +02:00

37 lines
889 B
C#

using Microsoft.AspNetCore.Components;
using WebWindowComplex.Models;
namespace WebWindowComplex
{
public partial class AreaSplit
{
#region Public Properties
[Parameter]
public List<Sash> CurrSashList { get; set; } = null;
[Parameter]
public Splitted CurrSplitted { get; set; } = null;
[Parameter]
public List<Splitted> CurrSplittedList { get; set; } = null;
[Parameter]
public EventCallback<int> EC_CopySash { get; set; }
#endregion Public Properties
#region Private Methods
/// <summary>
/// Sollevo evento richiesta copia sash
/// </summary>
/// <returns></returns>
private async Task RaiseCopySash(int indexCurrSash)
{
await EC_CopySash.InvokeAsync(indexCurrSash);
}
#endregion Private Methods
}
}