我想在没有ok按钮的情况下在qml中创建自定义对话框。 这是我的代码:
[1, 2, 3, 4, 1, 2, 0, 3, 0, 4]
打开对话框时出现“确定”按钮。 我正在使用QtQuick.Dialogs 1.2
答案 0 :(得分:1)
属性standardButtons
控制对话框中的按钮。
默认值为StandardButton.Ok
如果您没有按任何按钮,则需要重新实施contentItem
例如:
contentItem: Rectangle {
color: "lightskyblue"
implicitWidth: 400
implicitHeight: 100
Text {
text: "Hello blue sky!"
color: "navy"
anchors.centerIn: parent
}
}