Is it possible to hide the top portion of the QWidget window in Windows. The part of the window with the minimize btn, max imize btn and x (close) btn?
Is it possible to hide the top portion of the QWidget window in Windows. The part of the window with the minimize btn, max imize btn and x (close) btn?
Yes, see QWidget::windowFlags and Qt::FramelessWindowHint.
J-P Nurmi
sgmurphy19 (11th February 2008)
Thanks!
I was able to accomplish what I needed using
setWindowFlags(Qt::Popup);
Bookmarks