将 UWP NavigationView 内容设置为页面显示页面的类型名称
Setting UWP NavigationView Content To Page Displays Page's Type Name
我正在使用 XAML Islands 从 .NET Core WPF 应用程序 window 中显示 UWP NavigationView
控件(我不需要整个导航基础结构 --我只想要导航视图控件)。我还有一个派生自 Page
的 class,名为 Home
,我想用它来显示控件框架中的内容。当我将框架的内容设置为 Home
class 的对象时,我在框架的内容中看到了 Home
对象的类型名称,就好像 ToString()
在对象而不是渲染其内容。我错过了什么?
using System.Windows;
using MyApp.Wpf.Pages;
using Windows.UI.Xaml.Controls;
namespace MyApp.Wpf
{
public partial class MainWindow : Window
{
private Frame navigationFrame;
public MainWindow()
{
InitializeComponent();
uwpNavigationView.ChildChanged += uwpNavigationView_ChildChanged;
}
private void uwpNavigationView_ChildChanged(object sender, System.EventArgs e)
{
if (uwpNavigationView.Child is NavigationView navigationView)
{
var homeItem = new NavigationViewItem()
{
Content = "Home",
Icon = new FontIcon()
{
Glyph = "\uE80F",
}
};
navigationView.MenuItems.Add(homeItem);
navigationFrame = new Frame();
navigationView.Content = navigationFrame;
navigationView.SelectionChanged += NavigationView_SelectionChanged;
}
}
private void NavigationView_SelectionChanged(NavigationView sender, NavigationViewSelectionChangedEventArgs args)
{
if(args.SelectedItem is NavigationViewItem item)
{
var homePage = new Home();
navigationFrame.Content = homePage; // homepage.ToString() rendered here?
}
}
}
}
UWP Windows.UI.Xaml.Controls.Frame
无法呈现 WPF System.Windows.Controls.Page
元素。
您应该将 Content
属性 设置为 UWP Windows.UI.Xaml.Controls.Page
或使用 WPF System.Windows.Controls.Frame
。
我正在使用 XAML Islands 从 .NET Core WPF 应用程序 window 中显示 UWP NavigationView
控件(我不需要整个导航基础结构 --我只想要导航视图控件)。我还有一个派生自 Page
的 class,名为 Home
,我想用它来显示控件框架中的内容。当我将框架的内容设置为 Home
class 的对象时,我在框架的内容中看到了 Home
对象的类型名称,就好像 ToString()
在对象而不是渲染其内容。我错过了什么?
using System.Windows;
using MyApp.Wpf.Pages;
using Windows.UI.Xaml.Controls;
namespace MyApp.Wpf
{
public partial class MainWindow : Window
{
private Frame navigationFrame;
public MainWindow()
{
InitializeComponent();
uwpNavigationView.ChildChanged += uwpNavigationView_ChildChanged;
}
private void uwpNavigationView_ChildChanged(object sender, System.EventArgs e)
{
if (uwpNavigationView.Child is NavigationView navigationView)
{
var homeItem = new NavigationViewItem()
{
Content = "Home",
Icon = new FontIcon()
{
Glyph = "\uE80F",
}
};
navigationView.MenuItems.Add(homeItem);
navigationFrame = new Frame();
navigationView.Content = navigationFrame;
navigationView.SelectionChanged += NavigationView_SelectionChanged;
}
}
private void NavigationView_SelectionChanged(NavigationView sender, NavigationViewSelectionChangedEventArgs args)
{
if(args.SelectedItem is NavigationViewItem item)
{
var homePage = new Home();
navigationFrame.Content = homePage; // homepage.ToString() rendered here?
}
}
}
}
UWP Windows.UI.Xaml.Controls.Frame
无法呈现 WPF System.Windows.Controls.Page
元素。
您应该将 Content
属性 设置为 UWP Windows.UI.Xaml.Controls.Page
或使用 WPF System.Windows.Controls.Frame
。