如何从 mx:DateField 中删除边框?

发布于 2024-11-02 03:03:39 字数 300 浏览 0 评论 0原文

根据文档 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

爱你不解释 2024-11-09 03:03:39

DateField 中有一个名为 textInput 的受保护属性。您可以重写 DateField 类并将 TextInput 类型的 textInput 的样式“borderStyle”设置为“none”。例子:

public class ExtendedDateField extends DateField {

override protected function createChildren():void{
    super();
    textInput.setStyle('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:
.

public class ExtendedDateField extends DateField {

override protected function createChildren():void{
    super();
    textInput.setStyle('borderStyle','none');
}

}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文