1 Star 0 Fork 1

Mr.Wang/QT

forked from 老苏打/QT 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
ScanBlock.qml 1.47 KB
一键复制 编辑 原始数据 按行查看 历史
老苏打 提交于 2024-09-12 18:45 . QT项目
import QtQuick 2.7
import QtQuick.Controls 2.1
Text{ //扫描输入元和按钮
property alias e_unit: unit.text
property alias e_unitLocation: unit.x
property alias e_input: setValue.text
font.family: "微软雅黑"
font.pixelSize: 18
color:"#999999"
Image{
anchors.left: parent.right
anchors.leftMargin: 26
anchors.verticalCenter: parent.verticalCenter
source: "/icon/image/input.jpg"
TextInput{ //注意输入j的话,界面上的全部字符都会消失
id:setValue
anchors.fill: parent
font.family: "微软雅黑"
font.pixelSize: 14
verticalAlignment:TextInput.AlignVCenter
leftPadding: 5
text:qsTr("单行输入")
color:"#B8B8B8"
onFocusChanged: {
if(focus){
if(text=="单行输入"){
text=""
}
color="black"
}
else{
if(text==""){
text="单行输入"
color="#B8B8B8"
}
}
}
}
Text{
id:unit
//x: 116
font.family: "微软雅黑"
font.pixelSize: 14
anchors.verticalCenter: parent.verticalCenter
verticalAlignment:TextInput.AlignVCenter
color:"#666666"
}
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/evenot/qt.git
git@gitee.com:evenot/qt.git
evenot
qt
QT
master

搜索帮助