HarmonyOS 父组件的圆角如何作用于子组件

如下代码,给Swiper设置圆角后,如何让子组件的Image也显示圆角?

Swiper(){
  ForEach(this.bannerList,  (banner: NewsBannerContentlist, index: number) =>{
    Image(this.getImgUrl(banner.conentimg)).width('100%').height('100%')
  })
}.width(this.deviceWidth - CommonConstants.MARGIN_LEFT - CommonConstants.MARGIN_RIGHT)
.height((this.deviceWidth - CommonConstants.MARGIN_LEFT - CommonConstants.MARGIN_RIGHT) * 152 / 359)
.margin({
  left: CommonConstants.MARGIN_LEFT,
  right: CommonConstants.MARGIN_RIGHT
})
.clip(true)
.backgroundColor(Color.White)
.borderRadius(8)
.padding(2)
.indicator(
  Indicator.dot()
    .right(0)
    .itemWidth(6)
    .itemHeight(6)
    .selectedItemWidth(12)
    .selectedItemHeight(6)
    .color($r('app.color.color99FFFFFF'))
    .selectedColor(Color.White)
)
.loop(true)
.autoPlay(true)
.interval(5000)
HarmonyOS
2天前
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
Excelsior_abit

子组件Image要再设置:

Image($r('app.media.ic_banner03')).border({
  radius: { topLeft: 8, topRight: 8, bottomLeft: 8, bottomRight: 8 }
分享
微博
QQ
微信
回复
2天前
相关问题
HarmonyOS 自定义装饰器不能作用于ets
506浏览 • 1回复 待解决
组件调用组件方法
1284浏览 • 1回复 待解决
组件调用组件方法
329浏览 • 1回复 待解决
HarmonyOS 组件超过组件范围
16浏览 • 1回复 待解决
设置组件宽度不超出组件
639浏览 • 1回复 待解决
组件事件可以传到组件
686浏览 • 1回复 待解决
HarmonyOS 组件超出组件宽度
36浏览 • 1回复 待解决
HarmonyOS 组件超出组件布局
16浏览 • 1回复 待解决
HarmonyOS 组件调用组件方法
16浏览 • 1回复 待解决
组件组件传递函数
304浏览 • 1回复 待解决
如何设置组件组件宽度变化
2314浏览 • 1回复 待解决