我想开发一个基于WPF的桌面应用程序。如何通过C#代码从一个页面导航到另一个页面或从窗口中的一个页面导航?
g2ieeal71#
看看下面的链接-这些将给予您更好地了解在WPF应用程序中导航,提供示例和示例应用程序。How to Build, Manage and Navigate the User Interface of a WPF ApplicationSimple NavigationMore advanced Navigation我发现一个非常简单的浏览应用程序的方法是,如果您在Window中添加Frame,然后为其他相应的页面添加Page,则需要在窗口后面的代码中执行以下操作:
Window
Frame
Page
FrameContent.Navigate(new ExampleView());
qgzx9mmu2#
有一个使用Data Templates and ContentControl导航的简单示例
2条答案
按热度按时间g2ieeal71#
看看下面的链接-这些将给予您更好地了解在WPF应用程序中导航,提供示例和示例应用程序。
How to Build, Manage and Navigate the User Interface of a WPF Application
Simple Navigation
More advanced Navigation
我发现一个非常简单的浏览应用程序的方法是,如果您在
Window
中添加Frame
,然后为其他相应的页面添加Page
,则需要在窗口后面的代码中执行以下操作:qgzx9mmu2#
有一个使用Data Templates and ContentControl导航的简单示例