Aditya Patil

Aditya Patil

  • NA
  • 535
  • 130.9k

Reminder alart box click open page with details Windows Phon

Jul 30 2014 4:09 AM
Hello,
 
 I am writing code for Windows Phone application, in this I am showing the Reminder Alert Box when time will come, I want when I will tap on that reminder alert box, it will navigate to one page with those Reminders details. So How I can do.
 
_Content = TextField.Text;
_Date = dpkDate.Value.Value;
_Time = tpkDate.Value.Value.TimeOfDay;
_Date = _Date.Date + _Time;
Uri navigationUri = new Uri("/MainPage.xaml", UriKind.Relative); //Here I want to send parameter cause to show all details about reminder on MainPage.xaml
var newReminder = new Reminder(_Date.ToString())
{
Content = _Content,
BeginTime = _Date,
RecurrenceType = RecurrenceInterval.None,
NavigationUri = navigationUri,
// sound= new Uri("music1.wav",UriKind.Relative)
};
ScheduledActionService.Add(newReminder);
 
So Can I do this? & if yes, How?
 

Answers (2)