Adding a tab to default Properties' window of image files

雨燕双飞 提交于 2019-12-02 19:42:55

To do this you need to implement and install a "shell extension" (which basically are a bunch of COM interfaces)...

Remark: If the system you are running on doesn't have .NET 4 then Microsoft recommended NOT to use .NET for this because of the inherent restriction with the older versions that one process can't run multiple framework versions at the same time. Depending on the OS etc. case it could be recommended to implement this with C/C++.

In this specific case you need to build a shell extension which implements IShellPropSheetExt.

That aside the implementation of shell extension is a really tough job... some links with information / samples / source code / libraries etc.:

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!