我想根据该类中发生的某些活动向我的app用户显示一个MessageBox。我只是想知道什么是最好的方法。我所知道的一种方式似乎并不理想。
Deployment.Current.Dispatcher.BeginInvoke(() =>
{
MessageBox.Show(MessageString, TitleString, MessageBoxButton.OK);
});
答案 0 :(得分:0)
你可以试试吐司通知
ShellToast toast = new ShellToast();
toast.Title = "[title]";
toast.Content = "[content]";
toast.Show();