如何使程序对 GWT 中的复合尺寸变化做出反应?

发布于 2024-12-19 14:37:41 字数 212 浏览 2 评论 0原文

我想实现类似于地理地图小部件的东西。我制作了一个Composite,由静止的AbsolutePanel(外部)和移动的AbsolutePanel(内部)组成。用户将用鼠标移动内部面板,它将确定应从服务器请求其中的哪些图块。

所以,我希望它在外面板调整大小时做出反应。另外,我想知道发生这种情况时它的大小。我该怎么做?

I want to implement something similar to geographic map widget. I made a Composite, consisting of motionless AbsolutePanel (outer) and moving AbsolutePanel inside (inner). The user will move the inner panel with the mouse and it will determine which of its tiles should be requested from the server.

So, I want it to react when the outer panel resizes. Also, I want to know its size when this happens. How can I do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

橘亓 2024-12-26 14:37:41

首先,我会考虑扩展 ResizeComposite 而不是 CompositeResizeComposite 基本上是一个子类,它将调整大小事件传播到其子级。扩展该类后,您可以查看 这个问题了解如何获得新尺寸的想法。

First, I'd look into extending ResizeComposite instead of Composite. ResizeComposite is basically a subclass that propagates the resize event to its children. Once you're extending that class, you can look at this question for ideas of how to get the new size.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文