QMessageBox::aboutQtQML 中是否有可以使用的等價物?我沒有在QtQuick.Dialogs模塊中找到任何合適的東西(https://doc.qt.io/qt-5/qtquickdialogs-index.html)。
uj5u.com熱心網友回復:
QMessageBox::about與 QML最接近的匹配MessageDialog設定如下:
import QtQuick 2.2
import QtQuick.Dialogs 1.1
MessageDialog {
title: "Your title"
icon: StandardIcon.Information
text: "Your text"
standardButtons: StandardButton.Ok
Component.onCompleted: visible = true
}
至于QMessageBox::aboutQt,根據this topic,在Qt論壇中,沒有QML等價物,最好呼叫qApp->aboutQt:
閱讀檔案似乎沒有關于 QML 的 Qt。
從 C 類呼叫標準 qApp->aboutQt 可能更好。
轉載請註明出處,本文鏈接:https://www.uj5u.com/houduan/354362.html
