如何根据需要验证 Flex 4 组件尺寸?
事情很简单,我有一个组件,我向它添加一些内容,使其改变它的大小,我立即需要它的新大小,但 flex 只通过调用 updateDisplayList 更新下一帧的大小.......hou我可以强制它立即更新组件的大小吗?
有什么想法吗? :)
The things are simple, I have a component and I add some content to it making it change it's size, immediately I need it's new size, but flex only updates the size in the next frame by calling updateDisplayList.......hou can I force it to update the size of the component right away.
Any thoughts? :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当然,在将组件添加到其容器之前,我在调用 validateNow() 1 分钟后找到了答案。如果我在那之后调用它,一切都很好。
Naturally, I found the answer 1 min after, I was calling validateNow(), BEFORE adding the component to it's container. If I call it after that point, all's fine.