开发者

Windows Phone 7 Notifications/Pop/Toasts

If there a way to display a normal Notification/Toast/Popup in Windows Phone 7, which is not a Push Notif开发者_如何学Pythonication?

All I want to do is to be able to give the user a message when something occurs...


I assume you wish to display something while your application is not running in the foregorund. Because, when your application runs in the foreground, you can do whatever you want.

Your application can't run in the background, therefore you don't really have any means of invoking anything. This means you can't really display a message when somethien occurs.

What exectly occurs on the phone that you need to notify the user? Is that really not back-end related?

There are two great sample chapters on Windows Phone and Silverlight for Windows Phone on the LearningWindosPhone.com site. There is great Windows Phone Trainng material , and dont forget the Windows Phone Develoeprs Blog


You can use MessageBox.Show(), though this creates a modal dialog box.


If you want to display the notification while your app is not running (but when you're doing some background work) then I believe this is what you want:

ShellToast toast = new ShellToast(); 
toast.Title = "My app"; 
toast.Content = "Hello from my app's background task!"; 
toast.Show();

For some reason, this doesn't display anything if your app is already running. If you want to display a message then, you can use MessageBox.Show() (if you're OK forcing the user to click OK), or you can use the Coding4Fun Tools that Haider links to.


It would be fairly straight forward to reproduce the visual effect of a toast from within your app. You could use a fixed height, full width canvas with a TextBlock control and animate it's appearance using a storyboard.


How to bind toast notification with schedule in windows phone

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜