Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想开发一个基于 WPF 的桌面应用程序。如何通过 C# 代码从一页导航到另一页或从窗口中的一页?
请查看下面的链接 - 这些链接将使您更好地了解通过提供示例和示例应用程序的 WPF 应用程序导航。
如何构建、管理和导航 WPF 应用程序的用户界面
简单导航
更高级的导航
我发现在应用程序中导航的一种非常简单的方法是,如果您在 aFrame中添加一个Window然后为您的其他相应页面,使用Page并且您需要在窗口后面的代码中执行如下操作;
Frame
Window
Page
FrameContent.Navigate(new ExampleView());
希望这些链接有帮助!
有一个使用数据模板和 ContentControl的简单导航示例