5e3e535139
- Aggiornato tipi misure negli split (sia verticale sia orizzontale) - Aggiornati commenti
42 lines
966 B
C#
42 lines
966 B
C#
using Microsoft.AspNetCore.Components;
|
|
using WebWindowComplex.Models;
|
|
|
|
namespace WebWindowComplex.Compo
|
|
{
|
|
public partial class EditJoint
|
|
{
|
|
#region Public Properties
|
|
|
|
/// <summary>
|
|
/// Joint corrente
|
|
/// </summary>
|
|
[Parameter]
|
|
public Joint CurrRec { get; set; } = null!;
|
|
|
|
|
|
[Parameter]
|
|
public EventCallback<Joint> EC_Update { get; set; }
|
|
|
|
#endregion Public Properties
|
|
|
|
#region Private Properties
|
|
|
|
/// <summary>
|
|
/// Metodo per aggiornare joint corrente
|
|
/// </summary>
|
|
private int CurrJoint
|
|
{
|
|
get => CurrRec.SelJointTypeIndex;
|
|
set
|
|
{
|
|
if (CurrRec.SelJointTypeIndex != value)
|
|
{
|
|
CurrRec.SelJointTypeIndex = value;
|
|
_ = EC_Update.InvokeAsync(CurrRec);
|
|
}
|
|
}
|
|
}
|
|
|
|
#endregion Private Properties
|
|
}
|
|
} |