disable window frame
Unsolved
General and Desktop
-
wrote on 13 Sept 2022, 15:45 last edited by
Hi, how to disable window frame? So that it works also on win7 without windows aero enabled?
P.S: using QWebEngineView
-
wrote on 14 Sept 2022, 12:00 last edited by
-
wrote on 14 Sept 2022, 12:53 last edited by
Try;
setWindowFlags(Qt::FramelessWindowHint);
setAttribute(Qt::WA_TranslucentBackground);and maybe also:
setAutoFillBackground(false); -
Try;
setWindowFlags(Qt::FramelessWindowHint);
setAttribute(Qt::WA_TranslucentBackground);and maybe also:
setAutoFillBackground(false);wrote on 14 Sept 2022, 13:53 last edited by@mpergand said in disable window frame:
setAutoFillBackground(false);
It works fine on windows 10, but on win7 it's bad
Screen on win7:
Screen on win10:
-
wrote on 15 Sept 2022, 19:59 last edited by
up (8 chars)
2/5