使用 DrawingImage 作为多个菜单项的图标

发布于 2024-08-13 20:50:40 字数 375 浏览 7 评论 0原文

我有一些图标资源作为 DrawingImage ,由许多 GeometryDrawing 组成。我有文件 MenuItemToolBar 按钮,它们通过资源绑定到 MenuItem.Icon 使用这些图像。不幸的是,只有一个 MenuItem 显示该图标。

我确信您无法将单个 DrawingImage 资源分配给许多 MenuItem.Icon (或任何其他与此相关的内容),但我不知道有什么替代方法。我不想复制 DrawingImage 资源,但如果我也有的话,我想我会的。

I have some icon resources as DrawingImages that is made up of many GeometryDrawings. I have File MenuItems and ToolBar buttons that use these images via resource bindings to MenuItem.Icon. Unfortunately, only one of the MenuItems 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 技术交流群。

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

发布评论

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

评论(1

小矜持 2024-08-20 20:50:40

您将 Image 控件分配给 Icon 属性,并将 DrawingImage 设置到 Image.Source 属性中。

在 XAML 中:

<MenuItem>
    <MenuItem.Icon>
        <Image Source="{StaticResource myDrawingImage}"/>
    </MenuItem.Icon>
    <!-- everyhting else -->
</MenuItem>

在 C# 中:

menuItem.Icon = new Image() {Source = (ImageSource)Resources["myDrawingImage"]};

You assign an Image control to the Icon Property and set the DrawingImage into the Image.Source property.

In XAML:

<MenuItem>
    <MenuItem.Icon>
        <Image Source="{StaticResource myDrawingImage}"/>
    </MenuItem.Icon>
    <!-- everyhting else -->
</MenuItem>

In C#:

menuItem.Icon = new Image() {Source = (ImageSource)Resources["myDrawingImage"]};
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文