using Microsoft.Phone.Shell;
ShellToast toast = new ShellToast();
toast.Title = "程序标题";
toast.Content = "内容";
toast.NavigationUri = new Uri("/xxx.xaml", UriKind.Relative);
toast.Show();
本文共 238 字,大约阅读时间需要 1 分钟。
using Microsoft.Phone.Shell;
ShellToast toast = new ShellToast();
toast.Title = "程序标题";
toast.Content = "内容";
toast.NavigationUri = new Uri("/xxx.xaml", UriKind.Relative);
toast.Show();
转载于:https://www.cnblogs.com/fatdaniel/p/3709699.html