How to Show windows side by side from c++?
everyone the question is how to use options Show windows side by side by side from c++? I use windows 7 professional, 64 bit, is there some function that can be used, to switch widow?开发者_JAVA百科
You have to do this yourself. Work out the coordinates of the windows based on the size of the work area. Divide the width by 2 and do the math. There are no in-built shortcuts.
I don't understand your other question about switching window.
If you own the window use the famous SetWindowPos function: http://msdn.microsoft.com/en-us/library/ms633545%28v=vs.85%29.aspx
精彩评论