WPF - 页面函数。 为什么需要它们?

发布于 2024-07-15 04:39:57 字数 137 浏览 7 评论 0原文

我已经涉足 WPF 几个月了,我已经设法掌握了它的大部分内容以及使用它的原因/时间,但我仍然很难看到 PageFunction 类的价值。

有人能给我一个简单但具体的例子来说明 PageFunction 何时可能是完成这项工作的正确工具吗?

I've been dabbling in WPF for a couple of months now and I've managed to grasp most of what's about and why/when it's used but I'm still struggling to see the value of the PageFunction class.

Can someone give me a simple, but concrete example of when a PageFunction might be the correct tool for the job?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

百变从容 2024-07-22 04:39:58

主要是,它似乎是一种在基于任务的 UI 中形式化分支的模式。

假设您有一个带有可选功能复选标记的表单,但此功能需要额外的信息,而这些信息太复杂而无法放在同一页面上。
使用此模式允许将信息收集委托给另一个组件。

此外,还应用了一种策略模式,因为您可以让各种子系统能够收集相同的信息,所有子系统都继承 PageFunction(of T),因此实际调用这些子系统的代码不需要了解任何细节它。

这些只是一些想法,我还没有具体研究过。

Mainly, it seems to be a pattern to formalize branching in task based UI.

Let's say you have a form with a checkmark for an optional feature, but this feature requires additional information which is too complicated to fit on the same page.
Using this pattern allows delegating information collection to another component.

Moreover, there is kind of a strategy pattern applied, since you could have various subsystems able to collect the same information, all of them inheriting the PageFunction(of T), so that the code actually calling those does not need to know any detail about it.

Those are just some ideas, I have not exactly looked into it.

§对你不离不弃 2024-07-22 04:39:58

页面中的 PageFunction = 桌面应用程序中的对话框(无页面)。

每次在桌面应用程序中使用对话框并且想要为程序开发类似 Web 导航的行为时,都可以使用 PageFunction。

PageFunction in a page = Dialog box in desktop application (without Page).

You can use a PageFunction every time you use a dialog box in a desktop application and that you want to develop a webnavigation-like behavior to your program.

独享拥抱 2024-07-22 04:39:58

页面函数启用的主要功能是实现具有子任务的工作流并管理返回堆栈。

如果您仅依赖于页面到页面的导航,则很难暂停当前的导航路径,执行其他操作,然后返回并继续。 PageFunctions 通过返回和展开导航堆栈的概念来实现这一点。

我在这里提供了一些现实世界的例子: http://www.paulstovell.com/wpf-navigation< /a>

The main thing page functions enable is implementing workflows with sub-tasks and managing the return stack.

If you just rely on page-to-page navigation, it's hard to pause the current navigation path, do something else, and then come back and continue. PageFunctions enable that through the concept of Returning and unwinding the navigation stack.

I provided some real world examples of this here: http://www.paulstovell.com/wpf-navigation

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文