qt window menu bar
in any window (gui ) there appears a menubar 开发者_Go百科and minimize, maximize and close icons. How is it possible to hide this bar.
Brgds,
kNish
You can make a window frameless by calling:
setWindowFlags(Qt::FramelessWindowHint);
See the window flags documentation to see how else you can change the appearance of windows.
You can use Window flags to do this.
精彩评论