using Microsoft.Phone.Shell;
ShellToast toast = new ShellToast();
toast.Title = "程序标题";
toast.Content = "内容";
toast.NavigationUri = new Uri("/xxx.xaml", UriKind.Relative);
toast.Show();
2023-08-30 08:29:04
using Microsoft.Phone.Shell;
ShellToast toast = new ShellToast();
toast.Title = "程序标题";
toast.Content = "内容";
toast.NavigationUri = new Uri("/xxx.xaml", UriKind.Relative);
toast.Show();