private async void ctlConfigClearDownload_Click(object sender, RoutedEventArgs e) { var setting = new MetroDialogSettings { AffirmativeButtonText = "삭제", NegativeButtonText = "취소", DefaultButtonFocus = MessageDialogResult.Negative }; if (await MainWindow.Instance.ShowMessageBox("모든 다운로드 기록을 삭제할까요?\n\n삭제 후엔 되돌릴 수 없어요", MessageDialogStyle.AffirmativeAndNegative, setting) == MessageDialogResult.Affirmative) { ArchiveManager.ClearManga(); ConfigManager.Save(); MainWindow.Instance.ShowMessageBox("다운로드 기록을 삭제했어요.", 5000); } }