Aggiunta area di test e bottone in Aedifica

This commit is contained in:
Annamaria Sassi
2025-08-06 14:44:59 +02:00
parent 89a932fe10
commit d366a2355f
4 changed files with 25 additions and 7 deletions
@@ -1,12 +1,22 @@
using System;
using Microsoft.AspNetCore.Components;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Xml;
namespace WebAedificaConfigurator
{
public partial class WebAedificaMaker
{
string text = "";
[Parameter]
public EventCallback<string> EC_OnSave { get; set; }
protected async Task DoSave()
{
await EC_OnSave.InvokeAsync(text);
}
}
}