Navigating Between Pages
<HyperlinkButton NavigateUri="SecondPage.xaml" />private void FillupButton_Click(object sender, EventArgs e)
{
NavigationService.Navigate(
new Uri("//Views/FillupPage.xaml", UriKind.Relative));
}
Hi All,
I have one issue on above code. The codebehind contain 'UriKind.Relative' code. The question is How to use UriKind.Relative code in XAML page in Silverlight.
Is there any possible to use the 'UriKind.Relative' code in XAML page. Always these code is use only codebehind page.
These code how to use in XAML page?
Please help