Java AWT/Swing:获取有关窗口位置/大小变化的通知

发布于 2024-08-10 16:56:10 字数 89 浏览 3 评论 0原文

我有一个窗口,我希望在位置或大小发生变化时收到通知。哪种类型的听众最适合?

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 技术交流群。

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

发布评论

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

评论(2

冷情 2024-08-17 16:56:10

您可以使用具有 componentResizedcomponentMoved 方法。

You can use a ComponentListener which has the componentResized and componentMoved methods.

待"谢繁草 2024-08-17 16:56:10

你可能想尝试
HierarchyBoundsListener

        myJFrame.getContentPane().addHierarchyBoundsListener(new HierarchyBoundsListener(){

        public void ancestorMoved(HierarchyEvent e) {
            doSomething();          
        }

        public void ancestorResized(HierarchyEvent e) {
            doSomethingElse();
        }   

请参阅http://java.sun.com/docs/books/tutorial/ uiswing/events/eventsandcomponents.html 了解所有 swing 组件支持的侦听器的完整列表。

You might want to try
the HierarchyBoundsListener

        myJFrame.getContentPane().addHierarchyBoundsListener(new HierarchyBoundsListener(){

        public void ancestorMoved(HierarchyEvent e) {
            doSomething();          
        }

        public void ancestorResized(HierarchyEvent e) {
            doSomethingElse();
        }   

see http://java.sun.com/docs/books/tutorial/uiswing/events/eventsandcomponents.html for a full list of listeners that all swing components support.

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