How to call a page in silverlight:
How to call a page in silverlight:
In silverlight you can use the following code to call a page with in silverlight project.
void buttion_Click(object sender, RoutedEventArgs e)
{
this.Content = new MainPage(); //here MainPage is page name
}
Comments
Post a Comment