Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个简单的 TextInput 元素,但我无法在其中输入任何内容。
import QtQuick 1.0 Rectangle{ width: 100 height: 100 TextInput{ anchors.fill: parent focus: true text: '234' } }