当应用程序关闭wp8时推送通知

时间:2014-09-10 06:41:08

标签: windows-phone-8 push-notification

我正在尝试在Windows Phone Silver light 8.1应用程序中收到推送通知,我已通过This示例了解到。当应用程序正在运行但当我关闭应用程序时,它没有收到通知,或者可能无法显示Toast通知。

当应用程序当时正在运行消息框中显示的通知时,我面临的问题是Toast通知。 Toast Notification是否有任何隐藏代码?

之前工作正常,但过了一段时间后它会自动停止显示吐司通知。

请帮我解决这个问题。

1 个答案:

答案 0 :(得分:0)

ShellToast toast = new ShellToast();
toast.Title = "[title]";
toast.Content = "[content]";
toast.Show();

检查此网站:http://msdn.microsoft.com/en-us/library/windows/apps/jj662938(v=vs.105).aspx 此外,您必须确保允许您的应用在后台运行,并确保它可以在后台运行。