【问题标题】:How can I fix my Navigation/Frame Error in WPF? Error #CS1061如何修复 WPF 中的导航/帧错误?错误 #CS1061
【发布时间】:2019-05-08 09:11:04
【问题描述】:

我正在尝试设置一个带有框架的导航页面,但我遇到了这个似乎无法摆脱的错误。我的框架已停止工作并显示我已连接到它们的页面。

我已尝试查找此错误CS1061 并尝试查看错误在哪里。它似乎与 MainWindow.xaml 中的 Navigated="Frame_Navigated 冲突。也许有人可以指出我到底出了什么问题?它以前工作过。

MainWindow.xaml.cs 代码:

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 TataSteel_Gamification_01
{
    /// <summary>
    /// Interaction logic for MainWindow.xaml
    /// </summary>
    public partial class MainWindow : Window
    {
        public MainWindow()
        {
            InitializeComponent();

            //Display Items in Frame
            Loaded += Window_Loaded;

        }

        Boolean MenuToggle = true;

        private void Window_Loaded(object sender, RoutedEventArgs e)
        {
            //Open the Start Frame
            frame.NavigationService.Navigate(new Page1());
        }

        private void Btn_Page1_Click(object sender, RoutedEventArgs e)
        {
            //Open Page 1
            frame.NavigationService.Navigate(new Page1());
        }

MainWindow.xaml 代码(去掉不必要的部分):

<Window x:Name="ApplicationFrame" x:Class="TataSteel_Gamification_01.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:TataSteel_Gamification_01"
        mc:Ignorable="d"
        Title="MainWindow" Height="1200" Width="1920" Background="#FF1C2431">

<Grid x:Name="Grid_Display" ShowGridLines="False">

<Viewbox x:Name="Viewbox_Frame" Grid.Column="1" Grid.Row="0" HorizontalAlignment="Stretch" VerticalAlignment="Stretch">

<Frame x:Name="frame" Content="Frame" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" NavigationUIVisibility="Hidden" Navigated="Frame_Navigated" Height="1170" Width="1435"/>

</Viewbox>

</Grid>

我希望之后的结果将是导航再次起作用,因此我可以在框架内显示页面而不会出现任何错误。

【问题讨论】:

  • 你在.cs中添加Frame_Navigated事件了吗?
  • @JustinCI 既然你提到了它,我的 .cs 文件中没有任何 Frame_Navigated 事件。当我尝试在我的框架上“打开代码”时,它也不会将我重定向到任何东西。您可能知道我如何正确添加此事件吗?

标签: c# wpf xaml navigation frame


【解决方案1】:
Navigated="Frame_Navigated"

Frame_Navigated 是在实际导航框架时调用的函数。您似乎没有在 MainWindow.xaml.cs

中实现它

这是您在 .cs 文件中缺少的内容:

private void Frame_Navigated(object sender, System.Windows.Navigation.NavigationEventArgs e)
{
 // your code to handle navigated frame
}

【讨论】:

  • 我只是注意到,确实,当我尝试在框架上“打开代码”时,它也不会将我重定向到 .cs 文件中的任何内容。您可能知道我该如何正确实现它吗?
  • @Stabilis 只需将此代码放入您的 .cs 文件中,您的项目就会正常运行。
  • 抱歉,我没有注意到你添加了代码,我可能反应太快了。它再次起作用了,非常感谢您的快速响应和帮助!
猜你喜欢
  • 1970-01-01
  • 2016-04-01
  • 2017-03-30
  • 1970-01-01
  • 2020-04-01
  • 1970-01-01
  • 2021-08-11
  • 2014-07-26
  • 1970-01-01
相关资源
最近更新 更多