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.
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:
Qt Code:
setWindowFlags(windowFalgs() | Qt::FramelessWindowHint );To copy to clipboard, switch view to plain text mode
Or you can do it from Designer, if that's how you created your window.
nleverin (5th October 2007)
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().
J-P Nurmi
Bookmarks