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?
Printable View
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.
Thanks!
I was able to accomplish what I needed using
setWindowFlags(Qt::Popup);