本文介绍了如何移除 Flex 4 TextArea 组件的边框(火花主题光环)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
使用 Flex 3 SDK,您只需将 borderThickness 样式设置为 0,或将 borderStyle 设置为 none.对于 Flex 4 SDK 广告 Spark 主题,这不起作用.
With the Flex 3 SDK you simply needed to set the borderThickness style to 0, or set borderStyle to none. With the Flex 4 SDK ad the Spark theme, this has no effect.
推荐答案
必须将borderSkin设置为null
You have to set the borderSkin to null
<mx:TextArea borderSkin={null} />
这篇关于如何移除 Flex 4 TextArea 组件的边框(火花主题光环)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!