在 vb net 中创建桌面带(WMP 样式任务栏工具栏)
我已经搜索并搜索了如何执行此操作,但所有内容都返回到 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您根本不应该使用托管语言编写 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.
我在代码项目上找到了这个。它是用 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