Hello,
I have a QDialog, that is shown modal using QDialog::exec(). On my Win32 system, I get an item in the taskbar for this dialog. I always believed that if you set your mainwindow as a parent, this taskbar item dissapears.
I do the following:
Qt Code:
QWinWidget winWidget(hWndMain); //WinWidget containing my Win32 mainwindow HWND QMyDialog dlg(&winWidget); //My dialog, a child of winWidget dlg.exec();To copy to clipboard, switch view to plain text mode
Is there any other way of hiding the taskbar item for my QDialog?
Bookmarks