mirror of
https://github.com/leiurayer/downkyi.git
synced 2025-03-26 01:00:11 +08:00
下载列表弹出框优化
This commit is contained in:
parent
6221dd504e
commit
11538b6efa
@ -31,12 +31,13 @@ namespace DownKyi.Services
|
||||
/// 显示一个警告弹窗
|
||||
/// </summary>
|
||||
/// <param name="message"></param>
|
||||
/// <param name="buttonNumber"></param>
|
||||
/// <returns></returns>
|
||||
public ButtonResult ShowWarning(string message)
|
||||
public ButtonResult ShowWarning(string message, int buttonNumber = 1)
|
||||
{
|
||||
VectorImage image = SystemIcon.Instance().Warning;
|
||||
string title = DictionaryResource.GetString("Warning");
|
||||
return ShowMessage(image, title, message, 1);
|
||||
return ShowMessage(image, title, message, buttonNumber);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
@ -155,7 +155,7 @@ namespace DownKyi.ViewModels.DownloadManager
|
||||
private void ExecuteRemoveVideoCommand()
|
||||
{
|
||||
AlertService alertService = new AlertService(DialogService);
|
||||
ButtonResult result = alertService.ShowWarning(DictionaryResource.GetString("ConfirmDelete"));
|
||||
ButtonResult result = alertService.ShowWarning(DictionaryResource.GetString("ConfirmDelete"), 2);
|
||||
if (result != ButtonResult.OK)
|
||||
{
|
||||
return;
|
||||
|
@ -218,7 +218,7 @@ namespace DownKyi.ViewModels.DownloadManager
|
||||
private void ExecuteDeleteCommand()
|
||||
{
|
||||
AlertService alertService = new AlertService(DialogService);
|
||||
ButtonResult result = alertService.ShowWarning(DictionaryResource.GetString("ConfirmDelete"));
|
||||
ButtonResult result = alertService.ShowWarning(DictionaryResource.GetString("ConfirmDelete"), 2);
|
||||
if (result != ButtonResult.OK)
|
||||
{
|
||||
return;
|
||||
|
Loading…
Reference in New Issue
Block a user