如何从 mx:DateField 中删除边框?
根据文档 borderThickness 是适用的样式,但是当我尝试将其设置为任何内容(更喜欢“0”)时,它会显示“样式“borderThickness”被类型“mx.controls.DateField”排除。”
我可以将背景颜色设置为与背景相同,但后面有图像,所以这不起作用。
一定有办法消除这个边界!?
according the documentation borderThickness is an applicable style, but when I try to set it to anything (would prefer '0') it says "The style 'borderThickness' is excluded by type 'mx.controls.DateField'."
I could style the background color to be the same as the background, but I have an image behind so this will not work.
There must be some way to remove this border!?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
DateField 中有一个名为 textInput 的受保护属性。您可以重写 DateField 类并将 TextInput 类型的 textInput 的样式“borderStyle”设置为“none”。例子:
。
There is a protected property in the DateField named textInput. You can override the DateField class and set style 'borderStyle' of the textInput, which is of type TextInput, to 'none'. Example:
.