如何制作左侧带有徽标的上下文菜单

发布于 2024-12-07 19:11:35 字数 194 浏览 0 评论 0原文

我花了 4 个小时寻找如何制作带有徽标的上下文菜单。我的意思是看起来像守护进程工具上下文菜单的东西。

对于那些不知道它是什么样子的人: Daemon Tools Lite 上下文菜单

是否有任何选项可以在 XAML 中以简单的方式执行此操作?

I've looking for 4 hours how can I do a context menu with logo. I mean something which looks like daemon tools context menu.

For these who dont know how it looks like:
Daemon Tools Lite Context Menu

Is there any option to do it in simple way in XAML?

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

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

发布评论

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

评论(1

笑饮青盏花 2024-12-14 19:11:35

您必须调整 ContextMenu 的控件模板

只需复制整个内容,然后将此 StackPanel 包装在 Grid 或 DockPanel 中,然后在其中添加图像:

<StackPanel ClipToBounds="True" Orientation="Horizontal" IsItemsHost="True" />

一旦您理解并学会不要害怕控件模板,它们实际上就不是什么大问题。无需 C#,一切都是纯 XAML。

简要教程。

You will have to adjust ContextMenu's control template.

Just copy the whole thing and and wrap this StackPanel in Grid or DockPanel to which you add the image:

<StackPanel ClipToBounds="True" Orientation="Horizontal" IsItemsHost="True" />

Once you understand and learn not to fear control templates, they are really not a big deal. No C# necessary, all is pure XAML.

Brief tutorial.

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