简单的 XAML 到 XAML 页面导航

发布于 2024-10-07 08:11:52 字数 389 浏览 0 评论 0原文

我试图简单地从一个 .xaml 页面导航到另一个页面。我意识到导航模板是为此构建的,但我不希望主页标题/下面的内容感觉到它带来的感觉。使用空白的 Silverlight 应用程序 (C#),我想使用超链接按钮从 Page1.xaml 移动到 Page2.xaml。

在 Page1.xaml 上,我有一个像这样的超链接按钮:

<HyperlinkButton Content="Preview Report" Height="24" HorizontalAlignment="Stretch" Margin="98,296,377,21" Name="hyperlinkButton1" NavigateUri="/Page2.xaml" />

这似乎不起作用。请帮忙

I am trying to simply navigate from one .xaml page to another. I realize that the navigation template is built for this but I do not want the mainpage header / content below feel that it brings. Using a blank Silverlight application (C#) I want to move from Page1.xaml to Page2.xaml using a hyperlink button.

On Page1.xaml I have a hyperlink button like this:

<HyperlinkButton Content="Preview Report" Height="24" HorizontalAlignment="Stretch" Margin="98,296,377,21" Name="hyperlinkButton1" NavigateUri="/Page2.xaml" />

this doesn't seem to work. Please help

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

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

发布评论

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

评论(1

凌乱心跳 2024-10-14 08:11:52

您的主页中需要一个导航框架来支持这一点。从空白的 Silverlight 应用程序开始。

将 MainPage.xaml 修改为如下所示:-

<UserControl x:Class="StackoverflowSpikes.NavPage"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:navigation="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls.Navigation"              
    mc:Ignorable="d"
    d:DesignHeight="300" d:DesignWidth="400">

    <Grid x:Name="LayoutRoot" Background="White">
        <navigation:Frame Source="/Page1.xaml" />
    </Grid>
</UserControl>

将两个或多个导航页面添加到您的项目中。现在您可以向其中添加 HyperLinkBut​​ton 元素。

You will need a navigation frame in your MainPage in order to support this. Start with blank Silverlight Application.

Modify MainPage.xaml to look like:-

<UserControl x:Class="StackoverflowSpikes.NavPage"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:navigation="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls.Navigation"              
    mc:Ignorable="d"
    d:DesignHeight="300" d:DesignWidth="400">

    <Grid x:Name="LayoutRoot" Background="White">
        <navigation:Frame Source="/Page1.xaml" />
    </Grid>
</UserControl>

Add two or more Navigation Page's to your project. Now you can add HyperLinkButton elements to them.

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