【发布时间】: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