鑑於從QMainWindow的繼承一個窗口單獨-接壤,如何讓它單獨-鑲上在Windows?
我檢索其窗口句柄的想法,但我不知道該怎麼做。無論如何,如果有方法天然Qt的一個(的組合),將理解的。
在此先感謝。
編輯:
我已經試過代碼QT做一個窗口在Windows
HWND hWnd = (HWND)this->winId(); // the handle
unsigned old_styles = WS_OVERLAPPEDWINDOW & (~WS_THICKFRAME) | WS_VISIBLE;
SetWindowLongPtr(hWnd, GCL_STYLE, old_styles);
SetWindowPos(hWnd, HWND_TOP, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE
| SWP_NOZORDER | SWP_FRAMECHANGED);
UpdateWindow(hWnd);
,它不會盡管窗口句柄的工作是正確的。
什麼是「單-接壤」呢? – cmannett85 2013-03-27 14:14:32