可调整大小的网格行和网格项
我的 Flex 应用程序中有一个 mx:Grid
组件。但我想通过单击并拖动边框来调整它的大小。该组件不允许这样做。有人知道任何自定义组件可以做到这一点吗?
我想在这个 Grid 组件的每个 gridItem 中放置一个面板并调整它的大小。
I have an mx:Grid
component in my flex application. But I would like to resize it by clicking and dragging in the border. This component doesn't allow doing that. Does anybody know any custom component to do this?
I want to put a panel in each gridItem of this Grid component and resize it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我解决了!
我在 GridItem 中使用了可调整大小的自定义组件,现在 gridItem 将其宽度和高度设置为与自定义组件相同。
I solved it!
I have used a resizable custom component inside GridItem and now the gridItem sets its width and heigth same as custom component.