将图标添加到 WPF TreeView 的 ContextMenu 代码隐藏

发布于 2024-12-13 02:13:13 字数 60 浏览 0 评论 0原文

我有一个 WPF 上下文菜单,我想在我的 C# 代码中添加一个带有图标的项目。 我怎样才能做到这一点???

I have a WPF contextmenu and I want to add an Item with Icon to this in my C# code.
How Can I Do This???

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

世界等同你 2024-12-20 02:13:13

已经有这样的疑问了。例如此处
这样您就不必在这里深入研究:

menuItem.Icon = new BitmapImage(new Uri("images/sample.png", UriKind.Relative));

There were already questions like this. For example here.
So that you wouldn't have to drill down here:

menuItem.Icon = new BitmapImage(new Uri("images/sample.png", UriKind.Relative));
纵山崖 2024-12-20 02:13:13

应该为你工作。

<ContextMenu  x:Key="MyContextMenu" >
     <MenuItem  Header="Item1" Click="Ietm1_Click" 
           Icon="{StaticResource ItemIco}" />              

</ContextMenu>

可以从这种情况访问资源中的某人,

<Image x:Key="ItemIco" Source="Images/ItemIco.png"/>

在这种情况下,自然地,Images 是实际路径的文件夹。

Should work for you.

<ContextMenu  x:Key="MyContextMenu" >
     <MenuItem  Header="Item1" Click="Ietm1_Click" 
           Icon="{StaticResource ItemIco}" />              

</ContextMenu>

and someone in resources reachable from this cose

<Image x:Key="ItemIco" Source="Images/ItemIco.png"/>

Where Images, natuarally, is a folder of realtive path, in this case.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文