HarmonyOS如何使用TextInput将输入的小写字字母强制转成大写显示

HarmonyOS如何使用TextInput将输入的小写字字母强制转成大写显示

HarmonyOS
2024-08-09 11:39:14
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
zxjiu

demo如下:

@Entry 
@Component 
struct TextInputUpperCase { 
  @State text: string = ''; 
  build() { 
    Row() { 
      Column() { 
        TextInput({ text: this.text }) 
          .onChange((value: string) => { 
            this.text = value.toUpperCase(); 
          }) 
      } 
      .width('100%') 
    } 
    .height('100%') 
  } 
}
分享
微博
QQ
微信
回复
2024-08-09 16:56:32
相关问题
如何ArrayBuffer转成string?
482浏览 • 1回复 待解决
如何ArrayBuffer转成string
2380浏览 • 1回复 待解决
TextInput如何禁止输入emoj表情
349浏览 • 1回复 待解决
TextInput怎么输入中文
2861浏览 • 0回复 待解决
如何Resource资源对象转成string类型
2980浏览 • 1回复 待解决
HarmonyOS如何监听输入显示隐藏
449浏览 • 1回复 待解决
如何js传map转成c++对象
608浏览 • 1回复 待解决
HarmonyOS TextInput使用
182浏览 • 1回复 待解决
鸿蒙如何音频文件转成文本
4360浏览 • 1回复 待解决