views:

368

answers:

3

If there a way to display a normal Notification/Toast/Popup in Windows Phone 7, which is not a Push Notification?

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

+3  A: 

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

Yochay Kiriaty
Yeah i suppose there is no need for Notifications like in Android, unless you have a Push Client and use Push Notifications. Ah well, silly no multitasking!
Adam Goodchild
+2  A: 

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

Andréas Saudemont