16,817
社区成员




void
CustomCefView::onQCefUrlRequest(const QString& url)
{
QString title("QCef Url Request");
QString text = QString("Current Thread: QT_UI\r\n"
"Url: %1")
.arg(url);
QMetaObject::invokeMethod(this, [=]() {
QMessageBox::information(this->window(), title, text);
}, Qt::QueuedConnection);
}