当前位置:网站首页>openharmony容器组件之Counter

openharmony容器组件之Counter

2022-08-09 13:12:00 lplj717

Counter:计数器组件,提供相应的增加或者减少的计数操作
事件
    onInc(event: () => void)    监听数值增加事件
    onDec(event: () => void)    监听数值减少事件

效果如图:

 

代码:

@Entry
@Component
struct CounterT {
  @State value: number = 0

  build() {

    Column() {
      Counter() {
        Text(this.value.toString())
      }.margin(100)
      .onInc(() => {
        this.value++
      })
      .onDec(() => {
        this.value--
      })
    }
    .width('100%')
    .height('100%')
  }
}

原网站

版权声明
本文为[lplj717]所创,转载请带上原文链接,感谢
https://blog.csdn.net/lplj717/article/details/126242829