views:

174

answers:

2

I maintain a large C++ application using Win32 and i want to use some of the new controls introduced in Vista/Windows 7 (New ballon help, command links, status bar notofications.

I have downloaded the Windows User Experience Interaction Guidelines, but i dont find a corresponding API Reference. I know that some of these controls will be not available from core Win32 - so i am looking as well for some source about which controls need which API (WPF or whatever).

Any Links?

+3  A: 

The Windows 7 SDK site has a number of downloads and guidance pages which should help point you in the right direction: http://msdn.microsoft.com/en-us/windows/bb980924.aspx

The taskbar/notification API is further documented here: http://msdn.microsoft.com/en-us/library/dd378460%28VS.85%29.aspx

Wolfwyrd
A: 

Following Wolfs link and browsing for quite a while, i came up with the following entry point (on microsoft.com), that looks quite valuable to me:

Windows User Interface

and more specifically:

Windows Controls

As far as i can see there is nothing that can NOT be done using core Win32.

RED SOFT ADAIR