tags:

views:

39

answers:

2
+2  Q: 

qt window menu bar

in any window (gui ) there appears a menubar and minimize, maximize and close icons. How is it possible to hide this bar.

Brgds,

kNish

+1  A: 

You can use Window flags to do this : http://doc.trolltech.com/4.6/qt.html#WindowType-enum

Patrice Bernassola
+1  A: 

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.

teukkam