System.Windows.Shell 参考缺失
我有一个 Windows 窗体应用程序,我想制作自己的自定义跳转列表。为此,我需要使用命名空间 System.Windows.Shell,但我无法访问它,而且我也无法在引用列表中找到它的引用。我检查了一些教程,但它们都使用 XAML(WPF 应用程序),其中一些只是提到这也可以通过编码来完成。
所以我的问题是,是否可以访问 Windows 窗体应用程序中所需的命名空间,或者我是否需要使用 WPF?如果可能的话怎么办?如果没有,那么还有另一种方法可以在 Windows 窗体应用程序中执行此操作吗?
我正在使用 Visual Studio 2010 Ultimate (C#)。
提前致谢!
I have a windows form application and i want to make my own custom jumplist. To do this i need to use the namespace System.Windows.Shell but i can't access it, and i can't find a reference for it in the list of references either. I have checked some tutorials but they all use XAML (WPF Application) and some of them just mentions this can be done by coding as well.
So my question is, is it possible to access the namespace needed in a windows form app or do i need to use WPF? And if it is possible then how? And if not, then is there another way to do it in a windows form app?
I'm using Visual Studio 2010 Ultimate (C#).
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
System.Windows.Shell
命名空间位于PresentationFramework.dll
程序集中。如果您搜索命名空间,您可以自行发现,包含的程序集将显示在详细信息中。The
System.Windows.Shell
namespace is in thePresentationFramework.dll
assembly. You can find that out on your own if you search for the namespace, the containing assembly will be displayed in the details.需要对PresentationFramework 的程序集引用。该命名空间仅在 .NET 4 中可用。使用项目 + 属性,验证目标框架设置。在 Winforms 应用程序中使用它很好,这些类不需要 WPF 管道即可工作。它们是 Vista API 扩展的包装器。
An assembly reference to PresentationFramework is required. The namespace is only available in .NET 4. Use Project + Properties, verify the Target Framework setting. Using it in a Winforms app is fine, the classes don't require the WPF plumbing to work. They are wrappers for the Vista API extensions.