WPF MenuItem 和 Image 共享相同的资源

发布于 2024-11-03 19:08:36 字数 632 浏览 1 评论 0原文

如何在 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} />

这显示: https://i.sstatic.net/m4o62.png

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

要走干脆点 2024-11-10 19:08:36

尝试:

<MenuItem Header="New Entity ...">
    <MenuItem.Icon>
        <Image Source={StaticResource imgAccept} />
    </MenuItem.Icon>
</MenuItem>

Try:

<MenuItem Header="New Entity ...">
    <MenuItem.Icon>
        <Image Source={StaticResource imgAccept} />
    </MenuItem.Icon>
</MenuItem>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文