将Catch块中 打印Log的全部替换为NotificationHelper.ShowError

This commit is contained in:
2025-07-06 15:15:38 +08:00
parent 533a49d47b
commit b0874a4f02
8 changed files with 175 additions and 31 deletions

View File

@@ -0,0 +1,14 @@
using iNKORE.UI.WPF.Modern.Controls;
using PMSWPF.ViewModels.Dialogs;
namespace PMSWPF.Views.Dialogs
{
public partial class PollLevelDialog : ContentDialog
{
public PollLevelDialog(PollLevelDialogViewModel viewModel)
{
InitializeComponent();
DataContext = viewModel;
}
}
}