views:

180

answers:

1

I would like to implement Aero Peek of tabs in my desktop application (as per the functionality provided by Internet Explorer and this Firefox extension).

I'm coding in Java, but appreciate that I may need to use some native hooks to get this working. Can anyone point me in the right direction?

A: 

If you want to write that feature in .NET managed code, you can use the System.Windows.Shell namespace introduced in .NET 4. This easy to use wrapper let me get my Root Folders utility up and running in no time.

Otherwise, the APIs are Windows Shell COM interfaces documented at MSDN.

280Z28