Hi all,
I need some help on the forms.
how can I have a form with only title and without close, min, max button?
Qt::WindowFlags flags;
flags = Qt::Window | Qt::FramelessWindowHint | Qt::WindowTitleHint;
setWindowFlags(flags);
tried this but did not work.
Another problem is
How can I do something on form close event? what signal should I use?
I am using forms are Qwidgets not dialog.
Bookmarks