简单的 XAML 到 XAML 页面导航
我试图简单地从一个 .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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的主页中需要一个导航框架来支持这一点。从空白的 Silverlight 应用程序开始。
将 MainPage.xaml 修改为如下所示:-
将两个或多个导航页面添加到您的项目中。现在您可以向其中添加
HyperLinkButton
元素。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:-
Add two or more Navigation Page's to your project. Now you can add
HyperLinkButton
elements to them.