1
如何在qml中將TextInput分配給int?如何在qml中將TextInput分配給int?
INT new_span_seconds
的TextInput { ID:編輯 寬度:80 高度:17 顏色: 「白」 font.bold:真; font.pixelSize:14 文字: 「21」 的HorizontalAlignment:TextInput.AlignHCenter
}
Keys.forwardTo: [ (returnKey), (editor)]
Item {
id: returnKey
Keys.onReturnPressed: new_span_seconds = editor. <<<?>>>
Keys.onEnterPressed: new_span_seconds = editor. <<<?>>>
}
謝謝。