Files
webwindowconfigurator/WebWindowComplex/Compo/AreaSplit.razor.cs
T

37 lines
895 B
C#

using Microsoft.AspNetCore.Components;
using WebWindowComplex.Models;
namespace WebWindowComplex.Compo
{
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
}
}