21 lines
617 B
Plaintext
21 lines
617 B
Plaintext
@using MudBlazor
|
|
|
|
<MudDialog>
|
|
<DialogContent>
|
|
<MudText>@Message</MudText>
|
|
</DialogContent>
|
|
<DialogActions>
|
|
<MudButton OnClick="Cancel">취소</MudButton>
|
|
<MudButton Color="Color.Error" Variant="Variant.Filled" OnClick="Confirm">삭제</MudButton>
|
|
</DialogActions>
|
|
</MudDialog>
|
|
|
|
@code {
|
|
[CascadingParameter] MudDialogInstance MudDialog { get; set; } = null!;
|
|
[Parameter] public string Title { get; set; } = "";
|
|
[Parameter] public string Message { get; set; } = "";
|
|
|
|
private void Cancel() => MudDialog.Cancel();
|
|
private void Confirm() => MudDialog.Close();
|
|
}
|