实现Silverlight 页面切换

实现Silverlight 页面切换,第1张

概述Silverlight切换页面的具体做法是:   新建一个UserControl,名字可以叫做PageSwitcher。然后将PageSwitcher.xaml中的Grid控件去掉,编程下面这样: xmlns= "http://schemas.microsoft. com/winfx/2006/xaml/presentation%22  xmlns:x="http: //schemas.micro

Silverlight切换页面的具体做法是:

  新建一个UserControl,名字可以叫做PageSwitcher。然后将PageSwitcher.xaml中的GrID控件去掉,编程下面这样:

xmlns= "http://schemas.microsoft.
com/winfx/2006/xaml/presentation%22 

xmlns:x="
http: //schemas.microsoft.
com/winfx/2006/xaml%22>

  然后在后台代码中增加一个方法,比如叫做SwitchPage,用来实现Silverlight切换页面,然后在构造函数中调用,用来显示第一个要显示页面:

  public partial class PageSwitcher

  : UserControl

  {

  public PageSwitcher()

  InitializeComponent();

  SwitchPage(new Page());

  //显示第一个要显示的页面

  }

  ///

  /// 切换页面

  /// 需要被切换到的页面

  public voID SwitchPage

  (UserControl newPage)

  this.Content= newPage;

  然后在我们的各个页面中,在需要切换页面的事件响应方法中,只需要这么做:

  private voID btn_Click

  (object sender,RoutedEventArgs e)

  PageSwitcher switcher=

  this.Parent as PageSwitcher;

  switcher.SwitchPage(new

  AnotherPage());

  最后,我们需要修改app.xaml.cs中的Application_Startup方法,修改起始页面

  private voID Application_

  Startup(object sender,

  StartupEventArgs e)

  this.RootVisual=

  newPageSwitcher();

  完成到这一步之后,我们就能够实现Silverlight切换页面。

  本文来自lm550642630的博客,原文地址:http://hi.baIDu.com/lm550642630/item/e377ab95ca9b52cb7b7f01c0

总结

以上是内存溢出为你收集整理的实现Silverlight 页面切换全部内容,希望文章能够帮你解决实现Silverlight 页面切换所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1020366.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-23
下一篇 2022-05-23

发表评论

登录后才能评论

评论列表(0条)

保存