更改已应用 CSS 的 TextField 上的 CSS?

发布于 2024-10-19 04:30:24 字数 354 浏览 0 评论 0原文

如何更改已具有关联样式的 TextField 的 CSS 规则? 此 TextField 位于 RichTextEditor 内。

这是我正在尝试的代码:

_rSts: StyleSheet = new StyleSheet();
_rSts.parseCSS('font {font-family:Verdana; font-size:12;}');
_rTextField.styleSheet = _rSts;  

但是当我将新的样式表分配给 TextField 时,它会抛出一个异常,指出我无法将样式分配给已经包含样式的元素。 你们知道有什么办法解决这个问题吗?我可以删除默认的 CSS 并添加我的吗?

How do I change the CSS rules for a TextField that already has style associated with it ?
This TextField is inside a RichTextEditor.

Here's the code I'm trying:

_rSts: StyleSheet = new StyleSheet();
_rSts.parseCSS('font {font-family:Verdana; font-size:12;}');
_rTextField.styleSheet = _rSts;  

but when I assign the new StyleSheet to the TextField it throws an exception stating that I cannot assign a style to an element already containing a style.
Do you guys know any way around this? Can I remove the default CSS and add mine?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

暮凉 2024-10-26 04:30:24

尝试在组件上单独设置新样式。像这样的东西:

_rTextField.setStyle('font-family', 'Verdana');
_rTextField.setStyle('font-size', 12);

然而,Flash TextField 不是 Flex 组件,也不支持 Flex 样式方法。 setStyle 方法在 UIComponent 中定义。 Flex RichTextEditor 不支持似乎有一个记录的 TextField 子项,您可以访问或自定义该子项。 RichTextEditor 也没有定义您尝试设置的样式。

所以,我不相信你能做你想做的事。

Try setting the new style individually on the component. Something like this:

_rTextField.setStyle('font-family', 'Verdana');
_rTextField.setStyle('font-size', 12);

Howver, the Flash TextField is not a Flex component and does not support the Flex approach to styling. The setStyle method is defined in UIComponent. The Flex RichTextEditor does not appear to have a documented TextField child that you can access or customize. The RichTextEditor also does not define the styles you are trying to set.

So, I'm not convinced you can do what you want to do.

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