如何使用c#.net在win vista和win 7的详细信息窗格中添加自定义信息
我的应用程序有一个文件类型,我想在 Windows 资源管理器的组织\详细信息窗格中显示一些自定义信息。就像Word文件一样,它显示作者和内容,类似地我有一些我想显示的文件的自定义信息。
有人知道我该怎么做吗?
i have a file type for my application for which i want to show some custom information in Organize\Deatails Pane in windows explorer. Like for a word file it shows author and stuff similarly i have some custom information for my file which i want to show.
Anybody with idea on how can i do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你可以尝试像VS一样使用PropertyGrid。
如果这还不够好,那么您可以使用自定义组件。
You can try using PropertyGrid like VS does.
If that's not good enough, then you can use custom components.
我发现它可以通过属性处理程序。目前我正在研究它,完成后将在此处发布详细信息。在 xp 中,使用 IColumnHandler 来执行此操作,但由于需要 vista 属性处理程序。
i have found that it can be through Property Handler. Currently i am researching on it will post the details here when i am done. In xp IColumnHandler was used to do this but since vista property handler are needed.