📜  如何在 qt qml 中获取时间 - 无论代码示例

📅  最后修改于: 2022-03-11 14:56:19.148000             🧑  作者: Mango

代码示例2
Item {
    id: timeText
    color: timeText.color
    font.pixelSize: Theme.fontSizeHuge * 2.0
    text: { updatesEnabled: timeText.time  <--------add line here
        Qt.formatTime(new Date(), "hh:mm:ss")
    }
    anchors {
        horizontalCenter: parent.horizontalCenter
    }
}