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 和 LOB 应用程序的问题。我想要一个带有按钮的功能区控件:“新建”、“保存”、“下一个记录”、“上一个记录”等。
我希望按钮应用于应用程序中的不同类型的表单,但可以在顶部的功能区中使用,以便用户具有相同的方式,例如添加新项目。
这可以通过 ICommands 或 RelayCommand 或类似方法实现吗?我想进一步说明这个问题,但我不确定我要更详细地寻找什么。
您可以将Command按钮的 绑定到当前“视图”或文档的命令:
Command
<Button Content="Save" Command="{Binding CurrentView.SaveCommand}" />