如何在 Flex 3 中通过 CSS 引用嵌套组件?
使用 CSS,我将如何引用 Button 组件? FWIW,我正在使用 Flex 3.x SDK。
<mx:HBox id="myHBox" styleName="myHBox">
<mx:Button label="Test"/>
</mx:HBox>
Using CSS, how would I reference the Button component? FWIW, I'm using Flex 3.x SDK.
<mx:HBox id="myHBox" styleName="myHBox">
<mx:Button label="Test"/>
</mx:HBox>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 flex 3.x 中,如果不使用类型选择器,则无法通过 css 访问它,如下所示:
但这适用于按钮类的每个实例。
Flex 4.x 具有更好的 css 选择器实现,您可以通过其父级访问它,如下所示:
In flex 3.x you cannot access it via css without using a type selector like so:
but that would apply to every instance of the button class.
Flex 4.x has a better implementation of css selectors and you could access it via its parent like so:
显然,这(除其他外)是 Flex 3.x 中的一个限制。幸运的是,它在 Flex 4 中的工作方式与人们想象的一样:
http://butterfliesandbugs.wordpress.com/2008/10/23/new-css-selectors-are-supported-in-the-flex-4-trunk/
Apparently, this (amongst other things) is a limitation in Flex 3.x. Fortunately, it works as one would imagine in Flex 4:
http://butterfliesandbugs.wordpress.com/2008/10/23/new-css-selectors-are-supported-in-the-flex-4-trunk/