Files
qbtmud/Lantean.QBTMud/Components/Dialogs/DeleteDialog.razor
2025-02-04 13:58:24 +00:00

17 lines
613 B
Plaintext

@inherits SubmittableDialog
<MudDialog>
<DialogContent>
<MudText>Are you sure you want to remove @Count torrent@(Count == 1 ? "": "s") from the transfer list?</MudText>
<MudGrid>
<MudItem xs="12">
<MudCheckBox Label="Also permanently delete the files" @bind-Value="DeleteFiles" LabelPlacement="Placement.End" />
</MudItem>
</MudGrid>
</DialogContent>
<DialogActions>
<MudButton OnClick="Cancel">Cancel</MudButton>
<MudButton Color="Color.Primary" OnClick="Submit">Remove</MudButton>
</DialogActions>
</MudDialog>