close Slot
Şöyle yaparız.
Açıklaması şöyle.
Şöyle yaparız. Dialog modal olur
Şöyle yaparız. Dialog modal değildir.
Şöyle yaparız.
MyDialog::MyDialog(...) {
//constructor
QTimer::singleShot(60000, this, SLOT(close()));
}
exec metoduAçıklaması şöyle.
This runs a nested event loop for QDialog i.e. the dialog is modal. If this is not
intended use instead QDialog::show()
Şöyle yaparız. Dialog modal olur ve kullanıcı tarafından kapatılır.dlg->exec();
setModal metoduŞöyle yaparız. Dialog modal olur
dlg->setModal(true);
dlg->show();
show metodu
Şöyle yaparız. Dialog modal değildir.
dlg->show();
Hiç yorum yok:
Yorum Gönder