c# - WP8 App opens by tapping on Toast -
i'm developing application windows phone 8. need check if app opened tapping on toast notification. how can that?
suppose cannot information toast.
if check out msdn article here http://msdn.microsoft.com/en-us/library/windows/apps/jj662938(v=vs.105).aspx, you'll see possible add information toast can use in app!
deep linking screen using toast notifications can use param element or navigateuri property, depending on how you're creating toast notification, deep link specific screen in app. here allowed formats. string used following examples must 256 characters or less.
/page1.xaml – defines screen navigate in app when app starts. string must begin "/".
/page1.xaml?value1=1234 &value2=9876 – defines screen navigate when app starts, along name/value pairs of info. string must begin "/".
?value1=1234 &value2=9876 – contains name/value pairs of info passed default start screen of app. string must begin "?".
Comments
Post a Comment