Java AWT/Swing:获取有关窗口位置/大小变化的通知
我有一个窗口,我希望在位置或大小发生变化时收到通知。哪种类型的听众最适合?
WindowListener
对我不起作用。
I've got a window and I would like to get notified when the position or the size has changed. Which type of listener is the best to take?
WindowListener
didn't work for me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用具有
componentResized
和componentMoved
方法。You can use a ComponentListener which has the
componentResized
andcomponentMoved
methods.你可能想尝试
HierarchyBoundsListener
请参阅http://java.sun.com/docs/books/tutorial/ uiswing/events/eventsandcomponents.html 了解所有 swing 组件支持的侦听器的完整列表。
You might want to try
the HierarchyBoundsListener
see http://java.sun.com/docs/books/tutorial/uiswing/events/eventsandcomponents.html for a full list of listeners that all swing components support.