我正在使用此代码推送通知:
protected override void OnInvoke(ScheduledTask task)
{
//TODO: Add code to perform your task in background
string toastMessage = "Periodic task running.";
ShellToast toast = new ShellToast();
toast.Title = "Background Agent Sample";
toast.Content = toastMessage;
toast.Show();
#if DEBUG
ScheduledActionService.LaunchForTest(
task.Name, TimeSpan.FromSeconds(30));
#endif
NotifyComplete();
}
贝壳吐司效果很好。问题是当我使用
ShellTile tile = Shelltilve.ActiveTiles.First();
我找不到第一种方法。
如果有帮助,我正在使用 Windows Phone 8。我进行了搜索,发现它可以工作,但是无法使用我的代码来完成。