qml对话框删除确定按钮

时间:2018-06-14 13:22:53

标签: qt dialog qml

我想在没有ok按钮的情况下在qml中创建自定义对话框。 这是我的代码:

[1, 2, 3, 4, 1, 2, 0, 3, 0, 4]

打开对话框时出现“确定”按钮。 我正在使用QtQuick.Dialogs 1.2

1 个答案:

答案 0 :(得分:1)

属性standardButtons控制对话框中的按钮。

默认值为StandardButton.Ok

如果您没有按任何按钮,则需要重新实施contentItem

例如:

contentItem: Rectangle {
    color: "lightskyblue"
    implicitWidth: 400
    implicitHeight: 100
    Text {
        text: "Hello blue sky!"
        color: "navy"
        anchors.centerIn: parent
    }
}