Hi,
Does anyone how to create a qt form without any title area.
I have shown the area i want to remove in the attached figure,
thanks in advance.
nlev.
Printable View
Hi,
Does anyone how to create a qt form without any title area.
I have shown the area i want to remove in the attached figure,
thanks in advance.
nlev.
Use in the constructor of your window/dialog:
Code:
setWindowFlags(windowFalgs() | Qt::FramelessWindowHint );
Or you can do it from Designer, if that's how you created your window.
Hi Marcel,
thanks for the reply, i got this working with Qt4,
is there an equivalent function using Qt3?
Take a look at QWidget docs. Especially its constructor and setWFlags().