System.Windows.Shell 参考缺失

发布于 2024-10-22 01:04:04 字数 327 浏览 1 评论 0原文

我有一个 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 技术交流群。

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

发布评论

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

评论(2

荒人说梦 2024-10-29 01:04:04

System.Windows.Shell 命名空间位于 PresentationFramework.dll 程序集中。如果您搜索命名空间,您可以自行发现,包含的程序集将显示在详细信息中。

The System.Windows.Shell namespace is in the PresentationFramework.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.

难如初 2024-10-29 01:04:04

需要对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.

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