34 lines
833 B
C#
34 lines
833 B
C#
using Microsoft.AspNetCore.Components;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace WebWindowComplex
|
|
{
|
|
public partial class AreaSplit
|
|
{
|
|
[Parameter]
|
|
public List<Splitted> CurrSplittedList { get; set; } = null;
|
|
|
|
[Parameter]
|
|
public List<Sash> CurrSashList { get; set; } = null;
|
|
|
|
[Parameter]
|
|
public Splitted CurrSplitted { get; set; } = null;
|
|
|
|
[Parameter]
|
|
public EventCallback<int> EC_CopySash { get; set; }
|
|
|
|
/// <summary>
|
|
/// Sollevo evento richiesta copia sash
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
private async Task RaiseCopySash(int indexCurrSash)
|
|
{
|
|
await EC_CopySash.InvokeAsync(indexCurrSash);
|
|
}
|
|
}
|
|
}
|