Silverlight 重定向

发布于 2024-11-09 17:36:34 字数 572 浏览 0 评论 0原文

大家好,谁能告诉我如何执行此操作...我有一个包含两个 XAML 页面的 Silverlight 应用程序。在第一个上我有一个按钮。单击该按钮时,我想将用户重定向到第二个 XAML 页面。

我怎样才能做到这一点?

这是我到目前为止所拥有的:

public partial class MainPage : UserControl
{
    public MainPage()
    {
        InitializeComponent();
        this.HelloMessage.Text = "Hello Universe";
    }

    private void button1_Click(object sender, RoutedEventArgs e)
    {            
    }

    private void HelloMessage_Loaded(object sender, RoutedEventArgs e)
    {
        MessageBox.Show("This is the load event for this page");
    }
}

Hi guys can anyone tell me how to do this... I have a Silverlight application with two XAML pages. On the first one I have a button. When the button is clicked I would like to redirect the user to the second XAML page.

How can I accomplish this?

This is what i have so far:

public partial class MainPage : UserControl
{
    public MainPage()
    {
        InitializeComponent();
        this.HelloMessage.Text = "Hello Universe";
    }

    private void button1_Click(object sender, RoutedEventArgs e)
    {            
    }

    private void HelloMessage_Loaded(object sender, RoutedEventArgs e)
    {
        MessageBox.Show("This is the load event for this page");
    }
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

給妳壹絲溫柔 2024-11-16 17:36:34

如果您确实需要从一个 XAML 页面导航到另一页面,这将为您指明正确的方向:Silverlight 导航概述。不过,我想说的是,在 Silverlight 应用程序中,如果您只是尝试在页面上显示不同的内容,那么您通常不会遵循标准的 Web 导航范例。

If you really have a need to navigate from one XAML page to another, this will set you in the right direction: Silverlight Navigation Overview. I would say, however, that in a Silverlight app, if you're simply trying to display different content on the page, you don't generally follow the standard web navigation paradigm.

醉城メ夜风 2024-11-16 17:36:34
Application.Current.RootVisual = new MySecondPage();

其中 MySecondPage 是您要导航到的 xaml 页面。

Application.Current.RootVisual = new MySecondPage();

where MySecondPage is the xaml page to which you want to navigate to.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文