如何从flex动作脚本的复选框类中获取复选框图标?
我想获取 Flex 框架的复选框类中存在的复选框图像,我如何访问该图像。
需要帮助的
问候。
i want to get the checkBox image that is present in the checkBox class of flex Framework how can i access that image.
help needed
regards.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
正如 Chris 提到的,复选标记是使用 FXG 绘制的,而不是存储为位图。这是复选标记 FXG,取自 CheckBoxSkin(并进行了一些清理):
您可以创建一个仅显示此路径的自定义组件并将其插入到您喜欢的任何位置。希望有帮助。
As Chris mentioned, the checkmark is drawn using FXG rather than stored as a bitmap. Here's the checkmark FXG, taken from CheckBoxSkin (and cleaned up a little):
You could create a custom component that just displays this path and insert it wherever you like. Hope that helps.
如果您使用的是 Flex 4 组件,则复选框图标不是图像,而是复选框组件的标准外观内的矢量路径。如果您想从类中访问它,您可以这样做:
但是如果您只是想更改复选框的外观,只需创建一个自定义 CheckBoxSkin(然后您也可以添加图像图标)并将其分配给您的复选框组件。
If you are using Flex 4 components, the checkbox Icon is not an image but a vector path inside the standard Skin of the checkbox component. If you wanted to access that from within the class you could do:
But if you simply want to change the look of your checkbox, just create a custom CheckBoxSkin (you can also add image Icons then) and assign it to your checkbox component.
我假设您想更改图像?
如果是这样,这是 Flex 3 的一个很好的示例:
来自 blog.flexexamples.com 的示例(这些天几乎总是关闭!
Im presuming you want to change the image?
If so, this is a good example for Flex 3:
Example from blog.flexexamples.com (which is almost always down these days!