AI-Studio/app/MindWork AI Studio/Components/CommonDialogs/ConfirmDialog.razor.cs

21 lines
560 B
C#
Raw Normal View History

2024-04-20 15:07:27 +00:00
using Microsoft.AspNetCore.Components;
using MudBlazor;
namespace AIStudio.Components.CommonDialogs;
2024-05-04 08:55:00 +00:00
/// <summary>
/// A confirmation dialog that can be used to ask the user for confirmation.
/// </summary>
2024-04-20 15:07:27 +00:00
public partial class ConfirmDialog : ComponentBase
{
[CascadingParameter]
private MudDialogInstance MudDialog { get; set; } = null!;
[Parameter]
public string Message { get; set; } = string.Empty;
private void Cancel() => this.MudDialog.Cancel();
private void Confirm() => this.MudDialog.Close(DialogResult.Ok(true));
}