如何将 Windows 7 跳转列表添加到应用程序
我想在 Windows 7 中向我的应用程序添加自定义跳转列表条目。
我所指的菜单如下。
将应用程序固定到任务栏。
现在右键单击该应用程序。
某些应用程序(如 Windows Media Player 等)具有您可以运行的自定义选项。
我该如何将这些添加到我的应用程序中。
I want to add custom jump list entries to my application in Windows 7.
The menus I am referring to are the following.
Pin a application to the taskbar.
Now right click on the application.
Some applications like windows media player etc. have custom options that you can run.
How do I go about adding these to my application.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Windows 团队博客有一些关于跳转列表和其他新的 Windows 7 Shell 功能的文章:
这些面向 C++ 应用程序,还有 托管代码 API,以 .NET 开发人员更容易访问的方式打包这些 API。
The Windows Team Blog has some articles about Jump Lists and other new Windows 7 Shell features:
Those are geared towards C++ applications, there are also managed code APIs which package those in a way a little easier accessible to .NET developers.
对于 .Net 代码,Windows API 代码包中有一些很好的示例和库
。 \Shell\TaskbarDemo 专门处理任务栏 API,并展示如何执行跳转列表和控制图标。
不确定它是否有任何自定义操作的示例,例如媒体播放器。
For .Net code, there are some good example and libraries in the Windows API Code Pack
The Samples\Shell\TaskbarDemo specifically deals with the TaskBar APIs and shows how to do Jump Lists and control the icon.
Not sure if it has any examples of custom actions like Media Player.