silverlight
시작페이지 바꾸는법
동동(이재동)
2008. 8. 26. 18:26
app.xaml.cs
private void Application_Startup(object sender, StartupEventArgs e)
{
this.RootVisual = new MainView();
}
이부분을 시작페이지로 바꾼다 기본값은 page()
private void Application_Startup(object sender, StartupEventArgs e)
{
this.RootVisual = new MainView();
}
이부분을 시작페이지로 바꾼다 기본값은 page()