Click here to Skip to main content
15,889,281 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I'm new here so, guys please help me on how to change page using xaml and C# as platform like MVVM style of programming.
Posted
Updated 31-Mar-11 20:58pm
v2
Comments
amitkarnik2211 1-Apr-11 5:31am    
Pls Post the codes that u hv tried so far

1 solution

In Genral we do it this way

public void Button_Click(object sender, RoutedEventArgs e)
{
Window1 wind = new Window1();
wind.Owner = this;
wind.Show();
}
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900