赞
踩
代码展示
Column(){
Row(){
Text("默认类型")
.margin({right:10})
TextInput()
.width('60%')
.height(45)
}.margin({bottom:10})
Row(){
Text("自定义样式")
.margin({right:10})
TextInput()
.width('60%')
.height(45)
.fontColor(Color.Brown)
.enterKeyType(EnterKeyType.Next)
.caretColor(Color.Red)
.placeholderColor(Color.Green)
.placeholderFont({
size: 20,
style: FontStyle.Italic,
weight: FontWeight.Bold
})
}.margin({bottom:10})
Row(){
Text("输入密码")
.margin({right:10})
TextInput({ placeholder: "请输入密码"})
.width('60%')
.height(45)
.type(InputType.Password)
}.margin({bottom:10})
Row(){
Text("电话号码")
.margin({right:10})
TextInput({ placeholder: "请输入电话号码"})
.width('60%')
.height(45)
.type(InputType.PhoneNumber)
}.margin({bottom:10})
Row(){
//允许多行输入,但不支持maxLength属性。
Text("多行输入")
.margin({right:10})
TextArea({ placeholder: "请输入反馈内容:"})
.width("100%")
.height(200)
}.margin({bottom:10})
}
常用事件有:
onEditChange() 输入状态变化时,触发回调
onSubmit() 回车键或者软键盘回车键触发该回调
onChange() 当输入框的内容变化时
onCopy() 复制后触发的事件
onKeyEvent() 按键时发生的事件
onFocus() 按钮聚焦时发生的事件
onBlur() 按钮失去焦点发生的事件
onAppear() 按钮显示时发生的事件
onDisAppear() 按钮消失发生的事件
…
✨ 踩坑不易,还希望各位大佬支持一下 \textcolor{gray}{踩坑不易,还希望各位大佬支持一下} 踩坑不易,还希望各位大佬支持一下
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/你好赵伟/article/detail/247918
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。