如何在 GWT 中调整浏览器窗口大小时放置绝对面板中的小部件?
我已将所有小部件放置在绝对面板内。
当我最小化窗口时,图像被裁剪并且定位不正确。
有人可以帮我吗?
I have placed all the widgets inside an absolut panel.
when I minimize the window,the images gets cropped and also the positioning is not correct.
Can anyone out there help me out??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以添加 resizeHandler 到
Window
类,然后在onResize
中重新定位您的小部件 打回来。You can add a resizeHandler to the
Window
class and then re-position your widget in theonResize
callback.