From c223563dfa5eaa2b420de7f453a4b1e16e25545e Mon Sep 17 00:00:00 2001 From: WangJiazhen Date: Fri, 18 Aug 2023 16:27:19 +0800 Subject: [PATCH] =?UTF-8?q?fixed=206f0d6d8=20from=20https://gitee.com/bugh?= =?UTF-8?q?ub9906/docs/pulls/22534=20=E4=BF=AE=E6=94=B9XComponent=E4=B8=AD?= =?UTF-8?q?=E5=AF=B9=E6=89=8B=E5=8A=BF=E4=B8=8E=E5=9B=BE=E5=83=8F=E6=95=88?= =?UTF-8?q?=E6=9E=9C=E6=94=AF=E6=8C=81=E7=9A=84=E8=AF=B4=E6=98=8E=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: WangJiazhen Change-Id: I54f0a979d027046a4385fe8ec4687bf307a5b67a --- .../arkui-ts/ts-basic-components-xcomponent.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-xcomponent.md b/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-xcomponent.md index 9d38cf6fd2..fb808bf398 100644 --- a/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-xcomponent.md +++ b/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-xcomponent.md @@ -58,14 +58,14 @@ > 内部所写的非UI逻辑需要封装在一个或多个函数内。 ## 属性 -- XComponent显示的内容,可由开发者自定义绘制,通用属性中的[背景设置](./ts-universal-attributes-background.md)、[透明度设置](./ts-universal-attributes-opacity.md)和[图像效果](./ts-universal-attributes-image-effect.md)按照type类型有限支持。 -- type为SURFACE("surface")时上述通用属性均不支持,建议使用EGL/OpenGLES提供的接口设置相关内容。 -- type为COMPONENT("component")时上述通用属性均不支持,建议使用挂载子组件的方式进行设置相关内容。 -- type为TEXTURE时通用属性可以支持[背景颜色设置](./ts-universal-attributes-background.md)和[透明度设置](./ts-universal-attributes-opacity.md),[除颜色外的背景设置](./ts-universal-attributes-background.md)和[图像效果](./ts-universal-attributes-image-effect.md)暂不支持,建议使用EGL/OpenGLES提供的接口设置相关内容。 +- XComponent显示的内容,可由开发者自定义绘制,通用属性中的[背景设置](ts-universal-attributes-background.md)、[透明度设置](ts-universal-attributes-opacity.md)和[图像效果](ts-universal-attributes-image-effect.md)按照type类型有限支持。 +- type为SURFACE("surface")时仅支持[图像效果](ts-universal-attributes-image-effect.md)中的shadow属性,建议使用EGL/OpenGLES提供的接口设置相关内容。 +- type为COMPONENT("component")时仅支持[图像效果](ts-universal-attributes-image-effect.md)中的shadow属性,建议使用挂载子组件的方式进行设置相关内容。 +- type为TEXTURE时通用属性可以支持[背景颜色设置](ts-universal-attributes-background.md)、[透明度设置](ts-universal-attributes-opacity.md)和[图像效果](ts-universal-attributes-image-effect.md)中的shadow属性,[除颜色外的背景设置](ts-universal-attributes-background.md)和其他[图像效果](ts-universal-attributes-image-effect.md)暂不支持,建议使用EGL/OpenGLES提供的接口设置相关内容。 ## 事件 -仅type为SURFACE("surface")或TEXTURE时以下事件有效。不支持[通用事件](ts-universal-events-click.md)和[手势](ts-gesture-settings.md)。 +仅type为SURFACE("surface")或TEXTURE时以下事件有效。不支持[通用事件](ts-universal-events-click.md)。 ### onLoad -- GitLab