Ilaiya
Ilaiya

Reputation: 31

Toaster message in windows phone 8.1 app

I am developing windows phone 8.1 app using VS 2013.

I want to show toaster message for a period of time like toaster message in Andriod apps. What I am getting is Alert message and notification message. Both require user action at some point to closed the message.

What I want is to automatically close the message asynchronously .

Any help/suggestion would be greatly appreciated.

Thanks, Ilaiya.

Upvotes: 0

Views: 259

Answers (1)

bviale
bviale

Reputation: 5375

The toast API for WP8.1 is described here. The message can be clicked by the user, dismissed or ignored. But you can only retrieve a "click event" by configuring a URI for your toast (eg page1.xaml, which will be launched at click). You can't know if the toast is dismissed or ignored, and you can't close it by yourself (with code)

Upvotes: 1

Related Questions