使用 DrawingImage 作为多个菜单项的图标
我有一些图标资源作为 DrawingImage
,由许多 GeometryDrawing
组成。我有文件 MenuItem
和 ToolBar
按钮,它们通过资源绑定到 MenuItem.Icon
使用这些图像。不幸的是,只有一个 MenuItem
显示该图标。
我确信您无法将单个 DrawingImage
资源分配给许多 MenuItem.Icon
(或任何其他与此相关的内容),但我不知道有什么替代方法。我不想复制 DrawingImage
资源,但如果我也有的话,我想我会的。
I have some icon resources as DrawingImage
s that is made up of many GeometryDrawing
s. I have File MenuItem
s and ToolBar
buttons that use these images via resource bindings to MenuItem.Icon
. Unfortunately, only one of the MenuItem
s show the icon.
I am sure you can't assign a single DrawingImage
resource to many MenuItem.Icon
(or anything else for that matter), but I don't know of an alternative. I would prefer not to duplicate the DrawingImage
resource, but if I have too I guess I will.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您将 Image 控件分配给 Icon 属性,并将 DrawingImage 设置到 Image.Source 属性中。
在 XAML 中:
在 C# 中:
You assign an Image control to the Icon Property and set the DrawingImage into the Image.Source property.
In XAML:
In C#: