将图标添加到 WPF 中的 ApplicationCommands.Cut、ApplicationCommands.Copy...
我正在使用 ApplicationCommand.Copy、ApplicationCommands.Cut 等向我的应用程序添加剪贴板支持。这设置了我的菜单项的文本和快捷方式文本。有没有办法定义这些命令的图标,以便在使用这些命令的任何地方都能得到相同的图标?
I'm using ApplicationCommand.Copy, ApplicationCommands.Cut, and others to add clipboard support to my application. This sets the text and shortcut text of my menuitems. Is there a way to define the icon for these commands so I get the same icon wherever these commands get used?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
此功能依赖于
RoatedUICommand
,没有图标。例如,您可以子类化
MenuItem
并添加一些Dictionary
,然后您可以在内部使用它们。This functionality relies on the properties of
RoutedUICommand
, there is none for the icon. You could subclassMenuItem
for example and add someDictionary<RoutedUICommand,ImageSource>
, which you then can use internally.