gpt4 book ai didi

wpf - 在 WPF 中加载页面

转载 作者:行者123 更新时间:2023-12-04 13:12:27 27 4
gpt4 key购买 nike

伙计们,我有一个基本的 WPF 应用程序。一如既往地包含 App.xaml 和一个 Mainwindow.xaml。
我还创建了一些页面,如 page1/2/3。我想在 mainwindow.xaml 中加载例如 page1.xaml。这可能吗?并且还想关闭它,以便 mainwindow.xaml 的内容留在那里。

我不希望这是一个顶部带有左/右箭头的导航应用程序。

最佳答案

我来这里补充一下,有很多方法可以将页面加载到框架中:

通过设置源(如@Shift 所述)

frame1.Source = new Uri("Page1.xaml", UriKind.RelativeOrAbsolute);

通过设置内容:
frame1.Content= new Page1();

通过使用 NavigationService :
frame1.NavigationService.Navigate(new Page1());

关于wpf - 在 WPF 中加载页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2547710/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com