更改警报按钮的图标
如何将图标更改为“确定”、“取消”等警报按钮?
How do I change the icons to Alert buttons like OK, CANCEL etc?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何将图标更改为“确定”、“取消”等警报按钮?
How do I change the icons to Alert buttons like OK, CANCEL etc?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
如果您查看 Alert 的源代码,一旦您浏览了注释和属性,实际上就没有太多内容了。我过去所做的只是复制 Alert 类并修改我的自定义版本,但我认为合适。这样你就不必处理 mx_internal 的东西了。如果您使用的是 Flex 4,则没有 Spark 版本的 Alert,因此您可以做的另一件事是创建自己的 Spark 版本,这将使您能够更好地控制使用皮肤等对警报进行换肤。听起来很重要,但是它实际上比你想象的要容易得多(根据这里的经验。)
If you look at the source code for Alert there really isn't a lot there once you get past the comments and properties. What I've done in the past is to just copy the Alert class and modify my custom version however I see fit. That way you don't have to deal with the mx_internal stuff. If you are using Flex 4, there is no spark version of Alert, so another thing you can do is create your own spark version, which will give you even more control over skinning your alerts using skins etc. Sounds like a big deal, but it's actually much easier than you'd think (speaking from experience here.)
只需指定 Alert class< 的 iconClass 参数即可/a>.详细示例可以在 此处找到。
Just specify the iconClass paremeter of the Alert class. A detailed example can be found here.
您可以在此处找到完整的源代码和应用示例
You can find a complete source code and application example here