文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>Silverlight中的页面跳转

Silverlight中的页面跳转

时间:2011-04-01  来源:xuebingz

方案:

1.在App.xaml.cs中定义一个Grid控件:

    Grid grid=new Grid();

2.当整个应用程序启动运行时,让它第一个页面Login页面在Application Startup事件中来处理解决

   private void Application_Startup(object sender,StartupEventArgs e)

  {

     this.RootVisual=rootGrid;

     this.rootGrid.Children.Add(new Login());

   }

3.登录成功后我们还在App.xaml.cs里面写一个方法来解决

     public void Turn(UserControl userControl)

   {

        App app=App.Current as App;

         app.rootGrid.Children.Clear();

         app.rootGrid.Children.Add(userControl);

    }

4.在Login.xaml.cs中的Button事件中添加这样的代码:

    App app=App.Current as App;

    Content content=new Content();//新页面

    content.lblUserName.Text=txtUerName.Text.Trim();

    content.lblPwd.Text=txtPwd.Text.Trim();

    app.Turn(content);

相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载