在 vb net 中创建桌面带(WMP 样式任务栏工具栏)

发布于 2024-08-15 05:19:25 字数 139 浏览 4 评论 0原文

我已经搜索并搜索了如何执行此操作,但所有内容都返回到 Appbars(可停靠表单),这不是我需要的。

我想要一个进入任务栏的工具栏,如 WMP、itunes、语言工具栏。

最好是在 vbnet 中,但如果是在 C# 中那就没问题了。

I have searched and searched how to do this but everything leads back to Appbars (dockable forms) which is not what i need.

I want a toolbar that goes into the taskbar, like WMP, itunes, language toolbar.

Preferably in vbnet, but if its in C# then thats fine.

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

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

发布评论

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

评论(2

老街孤人 2024-08-22 05:19:25

您根本不应该使用托管语言编写 shell 扩展,即使一些在线示例展示了如何做到这一点。主要是因为每个进程只能加载一个CLR。因此,一旦您的扩展程序加载到 explorer.exe 中,指定不同 .net 版本的其他任何人的扩展程序都不会加载。当然,反之亦然,如果您的扩展程序不是第一个加载的扩展程序。

有关详细信息,请参阅 Raymond Chen 的博客

You should not be writing shell extensions in a managed language at all, even if some online examples show how to do it. Mainly because only one CLR can be loaded per process. So once your extension is loaded into explorer.exe, anybody else's extension specifying a different .net version won't load. And vice versa, of course, if your extension is not the first one to load.

See Raymond Chen's blog for more info.

世俗缘 2024-08-22 05:19:25

我在代码项目上找到了这个。它是用 C# 编写的,但您始终可以将其变为 Vb。

http://www.codeproject.com/KB/shell/dotnetbandobjects.aspx

I found this on the codeproject. It is in C#, but you could always make it Vb.

http://www.codeproject.com/KB/shell/dotnetbandobjects.aspx

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