2011-07-01 53 views
1

如何在qml中將TextInput分配給int?如何在qml中將TextInput分配給int?

INT new_span_seconds

的TextInput { ID:編輯 寬度:80 高度:17 顏色: 「白」 font.bold:真; font.pixelSize:14 文字: 「21」 的Horizo​​ntalAlignment:TextInput.AlignHCenter

} 

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

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

謝謝。

回答

2

這只是一段JavaScript代碼

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