比如我在某父窗口中新增一子窗口,在spy里看,一般都是放在其他子窗口后面,有什么办法让他在其他子窗口前面?
yourwindow.BringToFront
这是C#的方法,求问C++有方法吗?
@Jingle Guo: 肯定有的,你这都问,多买点书看看吧。
::SetForegroundWindow(wnd) or ::SetWindowPos(m_hWnd, // handle to window HWND_TOPMOST, // placement-order handle 0, // horizontal position 0, // vertical position 0, // width 0, // height SWP_SHOWWINDOW|SWP_NOSIZE|SWP_NOMOVE// window-positioning options );
@爱编程的大叔: 喔,谢谢