BB10 Cascades SystemDialog

时间:2013-05-25 18:03:06

标签: qml blackberry-10 blackberry-cascades

我对SystemDialogs有疑问?我需要在QML中实现一个,但是当使用10.1 SDK构建时,Github上可用的示例项目(“对话框”)显示为包含错误。然而它们确实正常运行。

感兴趣的代码如下:

    SystemDialog {
            id: dialog
            title: qsTr("DIALOG")
            body: qsTr("Dialog body")
            confirmButton.label: qsTr("Okay button")
            confirmButton.enabled: true
            cancelButton.label: qsTr("Cancel button")
            cancelButton.enabled: true
            buttons: [
                SystemUiButton {
                    id: random
                    label: qsTr("RANDOM")
                    enabled: true
                },
                SystemUiButton {
                    id: random2
                    label: qsTr("RANDOM2")
                    enabled: true
                }
            ]
…
}

“error”属性是confirm和cancel按钮的labelenabled属性以及SystemDialog的buttons数组属性。如上所述,虽然IDE将它们强调为错误,但代码似乎按预期工作。

我的问题是,有没有办法在SDK10.1中做类似的事情?我需要在对话框中的按钮上设置文本。

1 个答案:

答案 0 :(得分:0)

名称'标签'和'已启用'是正确的。

您可以查看bbndk-10.1 / target_10_1_0_1020 / qnx6 / usr / include / bb / system / SystemUiButton.hpp

我认为IDE将这些名称视为错误是不正确的。