构建使用 Windows 7 任务栏功能的 C#/.NET 应用程序

发布于 2024-08-18 06:34:50 字数 603 浏览 7 评论 0原文

新的 Windows 7 任务栏功能(例如跳转列表、预览等)非常酷,我希望允许我的 C# 应用程序使用它们。我有两个问题:

首先,如何使用这些功能(一般情况下)?我发现 两篇 文章微软对此表示关注,但我不太确定该怎么做。您能否提供库的链接以及一些示例代码?

接下来,假设我弄清楚如何使用这些任务栏功能。我的问题是,是否有一些内置方法可以检查操作系统是否为Windows 7,从而启用任务栏功能?如果我的应用程序中没有这个逻辑,那么在非Win7机器上运行会出现问题吗?

谢谢!

The new Windows 7 taskbar features, like jump lists, previews, etc. are really cool, and I want to allow my C# applications to use them. I have two questions:

First of all, how can I use these functions (in general)? I found two articles by Microsoft about this, but I'm not really sure what to do. Could you provide links to a library, as well as some sample code?

Next, let's say that I figure out how to use these Taskbar functions. My question is, is there some built-in way of checking whether the OS is Windows 7, and thus enabling the taskbar functions? If I didn't have this logic in my app, would it have problems if it was run on a non-Win7 machine?

Thanks!

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

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

发布评论

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

评论(2

几味少女 2024-08-25 06:34:50

在您链接到的第一篇文章中,您可以下载一个示例库,该库利用了新的 Windows 7 功能。

本文介绍了如何检查您的应用程序正在运行的 Windows。

与往常一样,如果您调用不存在的 API,那么您的应用程序将会遇到一些混乱。请记住,检查条件并执行一次相应操作(如在应用程序启动中)(几乎)总是比在代码中一遍又一遍地尝试某些操作并捕获异常更好。

In the first article you link to there is a sample library that you can download that makes use of the new Windows 7 features.

This article shows how to check the version of Windows your application is running on.

As always, if you call an API that isn't in existence, then yes, your app will experience some turbulence. Remember, it's (almost) always better to check for a condition and act accordingly once (as in application startup) than to try something over and over in code and catch exceptions.

饮惑 2024-08-25 06:34:50

适用于 .NET Framework 的 Windows API 代码包 是您获取大量 .NET API 的一站式商店用于 Windows 编程,包括任务栏。该库为您提供了一套完整的 API 集,可用于 Windows 7 任务栏等。它还包括 WPF 和 Winform 的示例。

Windows 7 内容的另一个很好的来源是 Windows 团队博客

Windows API Code Pack for .NET Framework is your one stop shop for a ton of .NET API for Windows programming, including Taskbar. This library gives you a complete API set to work with Windows 7 Taskbar and then some. It also includes samples for WPF, and Winform.

Another good source for Windows 7 content is the Windows Team Blog

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