Reputation: 225
I'm looking for an idea of how to develop a simple Windows application which will show an image (overlayed and always on top). An image should be clickable. Similar to gadgets in Windows 7. How to do it? Tnx.
Upvotes: 0
Views: 42
Reputation:
To make the window overlay, use SetLayeredWindowAttributes and to make it top most set the WS_EX_TOPMOST extended style at creation
Upvotes: 1