前言:我在此发帖,因为我在这里没有得到任何回复:https://social.msdn.microsoft.com/Forums/vstudio/en-US/5d7d4554-7d4b-45af-b02c-22ed0c7695a2/navigation-in-c-xaml-not-working?forum=vsta
我知道Stackoverflow是一个更可靠的来源,所以我决定在这里重新发布它。
我正在尝试在VS中创建我的第一个应用程序,我希望它只是一个关于Cubing的信息性应用程序(非常快速地解决Rubik的样式多维数据集。)我只是在学习C#和XAML的基础知识,但我无法在页面之间进行导航。我见过的所有教程都说使用代码行:
this.Frame.Navigate(typeof(PLL), null);
但它给了我这个错误:
'Mainwindow'不包含'Frame'的定义,并且没有扩展方法'Frame'可以找到接受'MainWindow'类型的第一个参数(你是否缺少using指令或汇编引用? 我还想指出他们说使用'空白应用'模板,但我似乎无法找到 - 是不是在VS社区?相反,我不得不使用WPF应用程序模板。
我做错了什么?如何在页面之间获得这些链接?
以下是我的整个C#和XAML代码。
谢谢!
C#:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
namespace CubingGuide
{
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
}
private void GoToPLL(object sender, RoutedEventArgs e)
{
this.Frame.Navigate(typeof(PLL), null);
}
}
}
XAML:
<Window x:Class="CubingGuide.MainWindow"
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:local="clr-namespace:CubingGuide"
mc:Ignorable="d"
Title="MainWindow" Height="350" Width="525">
<Grid>
<Button x:Name="GoToPLLButt" Margin="10,10,360,251" Content="PLL" Click="GoToPLL"/>
</Grid>
</Window>
答案 0 :(得分:0)
如果要导航到expressjs request
,则需要在XAML中创建Frame
对象(即需要使用&#34; PLL&#34填充框架)。
答案 1 :(得分:0)
您需要MainPage.xaml中的Frame控件
<Window x:Class="WpfApplication1.MainWindow"
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:local="clr-namespace:WpfApplication1"
xmlns:Controls="clr-namespace:System.Windows.Controls;assembly=PresentationFramework"
mc:Ignorable="d"
Title="MainWindow" Height="350" Width="525">
<Grid>
<Button x:Name="button" Content="Button" HorizontalAlignment="Left" Height="60" Margin="64,89,0,0" VerticalAlignment="Top" Width="135" Click="button_Click"/>
<Controls:Frame Name="MainFrame" NavigationUIVisibility="Hidden" >
</Controls:Frame>
</Grid>
</Window>
在点击事件中,您只需添加以下代码:
private void button_Click(object sender, RoutedEventArgs e)
{
MainFrame.Navigate(new Page1());
}
我希望这会有所帮助:)
答案 2 :(得分:0)
<Custom:Ribbon x:Name="ribbon" HorizontalAlignment="Left" Margin="0,10,0,0" VerticalAlignment="Top" Width="934">
<Custom:Ribbon.QuickAccessToolBar>
<Custom:RibbonQuickAccessToolBar>
<Custom:RibbonQuickAccessToolBar>
<Custom:RibbonSplitMenuItem Header="مرحله سوم"/>
</Custom:RibbonQuickAccessToolBar>
</Custom:Ribbon>
</Grid>