如何在 Flex 应用程序运行时加载并应用 CSS 样式表?
我想从 URL 加载 CSS 样式表并在运行时将它们应用到我的 Flex 3 应用程序。是否可以?
I'd like to load CSS stylesheets from a URL and apply them to my Flex 3 application at runtime. Is it possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以在运行时加载 css 文件以设置
TextField
中文本的样式。至于样式控件,恐怕您无法在运行时加载文本文件。也许您可以使用
StyleSheet
类来解析它 - 查看styleNames
数组 和getStyle
方法。You can load css files at runtime to style the text in a
TextField
.As for styling controls, I'm afraid you can't load a text file at run time. May be you can parse it using the
StyleSheet
class - check out thestyleNames
array and thegetStyle
method.您可以使用样式管理器加载样式表(已编译)。
对于完整的总结:在运行时加载样式表时间
You can load style sheets (compiled) using the Style Manager.
For the full run-down : Loading style sheets at run time