WPF MenuItem 和 Image 共享相同的资源
如何在 MenuItem 和 Image 控件之间共享 Image 或 BitmapImage 资源。
MenuItem 具有 Icon 属性,该属性需要一个 Image,而 Image 具有一个 Source 属性,该属性需要一个 String。如果我的 Page.Resources 中有以下内容,我如何将它们链接到相同的资源:
<BitmapImage x:Key="imgAccept" UriSource="Resources/Images/accept.png" />
这可以设置为图像的 Source 属性:
<Image Source={StaticResource imgAccept} />
但不能用于 MenuItem Icon 属性:
<MenuItem Header="New Entity ..." Icon={StaticResource imgAccept} />
How would I share an Image or BitmapImage resource between an MenuItem and an Image control.
The MenuItem has the Icon property which expects an Image while the Image has an Source property which expects an String. How would i link them to the same resource if I have the following in my Page.Resources:
<BitmapImage x:Key="imgAccept" UriSource="Resources/Images/accept.png" />
This can be set as the Source property for the Image:
<Image Source={StaticResource imgAccept} />
But can't be used for the MenuItem Icon property:
<MenuItem Header="New Entity ..." Icon={StaticResource imgAccept} />
That shows:
https://i.sstatic.net/m4o62.png
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试:
Try: