RoutedCommand 和 RoutedUICommand 之间有什么区别?
我尝试阅读一些相关内容,但未能找到令人满意地解释 RoutedCommand 和 RoutedUICommand 之间差异的文档。
I have tried to do some reading about it, but I failed to find documentation that explains the difference between RoutedCommand and RoutedUICommand satisfactorily.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
RoutedUICommand 派生自 RoutedCommand,并添加一个用于提供命令描述的文本字段。当必须从 UI 访问该命令时,这非常有用。
我从这里得到这个< /a>.
RoutedUICommand derives from RoutedCommand and adds a text field used to provide a description of the command. This is useful when the command is bound to be accessed from the UI.
I got this from here.