gpt4 book ai didi

qml - QML TextEdit 中的占位符文本

转载 作者:行者123 更新时间:2023-12-04 16:33:21 27 4
gpt4 key购买 nike

我正在寻找一种方法来显示一个文本提示,说明预期的输入作为对用户的建议。以谷歌搜索栏为例:

enter image description here

是否有我缺少的属性,或者这是必须通过脚本来实现的?

最佳答案

Qt Quick 输入项上不存在该属性。您可以为功能投票 here .

同时,您可以使用 TextArea 来自 Qt 快速控制 2。

如果您更愿意使用纯 Qt Quick,您可以执行与控件类似的操作并添加 Text字段上方的项目:

import QtQuick 2.5
import QtQuick.Window 2.2

Window {
width: 300
height: 300
visible: true

TextEdit {
id: textEdit
width: 200
height: 50

property string placeholderText: "Enter text here..."

Text {
text: textEdit.placeholderText
color: "#aaa"
visible: !textEdit.text
}
}
}

关于qml - QML TextEdit 中的占位符文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40356569/

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