I've been looking for ages for C++ examples for Aero Glass interfaces using just WinAPI (CreateWindow/CreateWindowEx) without ATL/WTL/MFC/etc.

I found someone linking to one somewhere on a forum but the link was dead and I couldn't find any others.

Any ideas where I can find one?

link|improve this question
I just realized you were asking for examples - not a how-to for getting Aero to work. – Mysticial Sep 9 '11 at 5:28
@Mysticial can you please put the link/header/linker in a comment for me please. I would still like to have a read. – MichaelAttard Sep 9 '11 at 5:47
I've undeleted my post. – Mysticial Sep 9 '11 at 5:51
which aspects of glass are you interested in? – David Heffernan Sep 9 '11 at 6:21
feedback

2 Answers

up vote 2 down vote accepted

The samples on this MSDN article are not specific to any framework (except Windows)

link|improve this answer
feedback

If I remember correctly, you need to include <commctrl.h> and then set your manifest to link against ComCtl32.dll.

Then in your code you need to call: InitCommonControls()

More details are here: http://msdn.microsoft.com/en-us/library/bb773175%28v=vs.85%29.aspx

This was from something I wrote a long time ago. I made my windows using CreateDialog() and resources instead of CreateWindow(). And I do remember needing common controls to get both CreateDialog() and Aero to work.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.