c++ - How do I place my app window in a certain position in the desktop window hierarchy on Windows using win32 api? -
I want my app to be in a fixed position in the window window hierarchy. That is, there are 3 windows on my desktop. At the very least I have the word, the window explorer at the top of the word, and the active foreground window is iTunes. I want to put my application window at the top of the word, but below the explorer How can I get it?
You may be able to use - see the hWndInsertAfter parameter. I'm not sure this process will work on the borders, but it's worth a shot, do it after your window is created but before you make it visible.
Comments
Post a Comment