使用CSS设置样式类
我有以下 CSS,我想让它工作。我确信我曾经做过类似的事情,但我在谷歌上找不到答案。
基本上,一些样式属性具有可以更改的子属性,例如 Container.borderSkin。您可以设置 borderThickness、borderStyle 等,所有这些都在 borderSkin 样式上。
<mx:Style>
.myBorderSkin
{
borderThickness: 5;
borderColor: #FF0000;
/*borderStyle: none;*/
}
MyControl
{
borderSkin: .myBorderSkin;
}
</mx:Style>
不幸的是,当我运行该应用程序时,我收到错误“TypeError:错误#1034:类型强制失败:无法将“myBorderSkin”转换为类。”
I've got the following CSS which I'd like to get working. I'm sure I've done something similar once, but I can't find the answer on google.
Basically some style properties have child properties which can be changed, suchas Container.borderSkin. You can set borderThickness, borderStyle etc, all on the borderSkin style.
<mx:Style>
.myBorderSkin
{
borderThickness: 5;
borderColor: #FF0000;
/*borderStyle: none;*/
}
MyControl
{
borderSkin: .myBorderSkin;
}
</mx:Style>
Unfortunatly when I run the application, I get the error "TypeError: Error #1034: Type Coercion failed: cannot convert "myBorderSkin" to Class."
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这就是我的想法:
通过设置 {x}StyleName 属性,您可以将其指向 CSS 选择器。
This is what I was thinking of:
By setting the {x}StyleName property you can point it at a CSS selector.