ts-universal-attributes-click.md 1.2 KB
Newer Older
Z
zengyawen 已提交
1 2 3
# 点击控制

> ![icon-note.gif](public_sys-resources/icon-note.gif) **说明:**
K
kukixi 已提交
4
> 从API Version 7开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。
Z
zengyawen 已提交
5 6 7 8 9 10 11 12 13 14


## 权限列表




## 属性


H
HelloCrease 已提交
15 16 17
| **名称**    | **参数类型** | **默认值** | **描述**         |
| --------- | -------- | ------- | -------------- |
| touchable | boolean  | true    | 设置当前组件是否可以被触摸。 |
Z
zengyawen 已提交
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50


## 示例

```
@Entry
@Component
struct TouchAbleExample {
  @State text1: string = ''
  @State text2: string = ''

  build() {
    Stack() {
      Rect()
        .fill(Color.Gray).width(150).height(150)
        .onClick(() => {
          console.info(this.text1 = 'Rect Clicked')
        })
        .overlay(this.text1, { align: Alignment.Bottom, offset: { x: 0, y: 20 } })
      Ellipse()
        .fill(Color.Pink).width(150).height(80)
        .touchable(false) // 点击Ellipse区域,不会打印 “Ellipse Clicked”
        .onClick(() => {
          console.info(this.text2 = 'Ellipse Clicked')
        })
        .overlay(this.text2, { align: Alignment.Bottom, offset: { x: 0, y: 20 } })
    }.margin(100)
  }
}
```


![zh-cn_image_0000001189624550](figures/zh-cn_image_0000001189624550.gif)