如何将按钮的皮肤设置为空?
如何将按钮的皮肤设置为空?
button = new Button();
button.useHandCursor=true;
button.buttonMode =true;
我想设置button.skin = null
谢谢
How to set skin to null for button?
button = new Button();
button.useHandCursor=true;
button.buttonMode =true;
i want to set button.skin = null
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
弹性 3 还是弹性 4?
Flex 4版本
button.setStyle("skinClass", null)
Flex 3 版本
button.setStyle("upSkin", null)
按钮.setStyle("downSkin", null)
按钮.setStyle(“overSkin”,null)
Button.setStyle("disabledSkin", null)
Flex 3 or Flex 4?
Flex 4 version
button.setStyle("skinClass", null)
Flex 3 version
button.setStyle("upSkin", null)
button.setStyle("downSkin", null)
button.setStyle("overSkin", null)
button.setStyle("disabledSkin", null)