对几种不同的 WPF 表单使用通用保存按钮
我有关于 WPF 和 LOB 应用程序的问题。我想要一个带按钮的功能区控件:“新建”、“保存”、“下一条记录”、“上一条记录”等。
我希望这些按钮适用于应用程序中的不同类型的表单,但可以在顶部的功能区中使用,以便用户可以使用相同的方式添加新项目。
这可以通过 ICommands 或 RelayCommand 或类似的方法来实现吗?我想进一步说明这个问题,但我不确定我在寻找更详细的内容。
I have a question about WPF and a LOB application. I would like to have a ribbon control with the buttons: "New", "Save", "Next Record", "Previous Record" and so on.
I would like the buttons to apply to different kind of forms in the application but be available in the Ribbon on top so that the user has the same way of for example adding new items.
Is this possible to achieve with ICommands or RelayCommand or similar? I would like to specify the question further but I'm not sure what I'm looking for in more detail.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将按钮的
Command
绑定到当前“视图”或文档的命令:You could bind the
Command
of the button to a command of the current "view" or document: