财产“皮肤”是只读的->柔性蒙皮
我想用自定义皮肤组件装饰一个弹性按钮。
但是当我将“皮肤”属性指向源时,它显示“属性皮肤是只读的”
我的按钮声明:
<s:Button id="state"
label="State View"
skin="CustomButtonSkin"
click="state_clickHandler(event)" />
这是在组件内部,并且 CustomButtonSkin.mxml 位于同一目录中...
I want to decorate a flex Button with a cutom skin component .
But when i point the 'skin' property to the source , it says "Property skin is read only"
My Button declaration :
<s:Button id="state"
label="State View"
skin="CustomButtonSkin"
click="state_clickHandler(event)" />
This is inside a Component and CustomButtonSkin.mxml is in the same directory ...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该设置 skinClass 属性,而不是 skin
You should set the skinClass property, not skin