20 Aralık 2017 Çarşamba

QDialog Sınıfı

close Slot
Şöyle yaparız.
MyDialog::MyDialog(...) {
    //constructor
    QTimer::singleShot(60000, this, SLOT(close()));
}
exec metodu
Açı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