gpt4 book ai didi

qt - 如何在 qml 中将 TextInput 分配给 int?

转载 作者:行者123 更新时间:2023-12-04 12:51:09 25 4
gpt4 key购买 nike

我如何分配 TextInput到一个 int,在 qml 中?

int new_span_seconds

TextInput {
id: editor
width: 80
height: 17
color: "white"
font.bold: true; font.pixelSize: 14
text: "21"
horizontalAlignment: TextInput.AlignHCenter

}

Keys.forwardTo: [ (returnKey), (editor)]

Item {
id: returnKey
Keys.onReturnPressed: new_span_seconds = editor. <<< ? >>>
Keys.onEnterPressed: new_span_seconds = editor. <<< ? >>>
}

最佳答案

这只是一段 Javascript

Keys.onReturnPressed: new_span_seconds = parseInt(editor.text)

关于qt - 如何在 qml 中将 TextInput 分配给 int?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6550383/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com