在 Windows 7 和 Vista 中为我的应用程序文件类型添加属性到详细信息窗格

发布于 2024-10-08 18:08:09 字数 223 浏览 2 评论 0原文

我的应用程序有一个文件类型,我想在 vista 和 win 7 的 Windows 资源管理器的详细信息窗格(显示在底部)中显示一些自定义信息。就像 Microsoft Word 文件类型 (.docx) 在详细信息窗格中具有属性一样在显示作者属性等的 Vista 和 Windows 7 中,我有一些我想显示的文件的自定义信息。我希望它是一个 ac# .net 2.0 应用程序来为我做这件事。

任何帮助表示赞赏。

I have a file type for my application for which i want to show some custom information in Details Pane(which appears at the bottom) in windows explorer in vista and win 7. Like Microsoft Word file type (.docx) has properties on Details Pane in vista and window 7 that show author property and e.t.c i have some custom information for my file which i want to show. I want it to be a c# .net 2.0 application that does it for me.

Any help is appreciated.

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

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

发布评论

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

评论(2

初心 2024-10-15 18:08:09

一项艰难的任务。您需要实现属性处理程序属性处理程序是一个 COM 对象,它知道如何从中提取属性你的文件。我认为它可以使用进程外激活,因此您可以使用 .NET 2.0,但要为大量 COM 互操作内容做好准备。 一体化代码框架提供了一些用 C++ 编写的 shell 扩展对象的示例以及在 C# for .NET 4 中,它至少应该为您提供指导。另请参阅此问题。

This is a tough one. You need to implement a property handler. A property handler is a COM object which knows how to extract properties from your files. I think it can use out-of-process activation so you may be able to use .NET 2.0, but be prepared for a lot of COM interop stuff. The All-in-one code framework has some examples of shell extension objects written in C++ and in C# for .NET 4, which should at least give you pointers. See also this question.

胡大本事 2024-10-15 18:08:09

有关每种文件类型中显示内容的信息位于注册表中:
HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SystemFileAssociations\

您可以在安装时为您的文件类型(按扩展名)创建一个子项,并设置您想要显示的属性。

Information for what to display in each file type is in the registry under:
HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SystemFileAssociations\

You could create a sub key at install time for your file type (by extension), and set the properties you want displayed.

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