1

单击按钮时,我将面板添加到已显示的 JFrame 中。现在,当用户调整框架大小时,面板在其位置保持不变。我想要的是面板位置也应该随着框架调整大小而调整。有什么办法吗?

重新生成我的问题的代码:

import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

import javax.swing.BorderFactory;
import javax.swing.GroupLayout;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLayeredPane;
import javax.swing.JPanel;
import javax.swing.SwingUtilities;

public class ProblemPanelLocation {
    public static void main(String[] args) {
        SwingUtilities.invokeLater(new Runnable() {
            @Override
            public void run() {
                final JFrame frame = new JFrame("ProblemPanelLocation");
                frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                frame.setSize(250, 250);
                final JPanel panel = new JPanel();
                panel.setSize(100, 100);
                panel.setBorder(BorderFactory.createBevelBorder(1));
                final JButton button = new JButton("Add panel");
                button.addActionListener(new ActionListener() {
                    @Override
                    public void actionPerformed(ActionEvent e) {
                        panel.setLocation(button.getX() - button.getWidth() - 10, button.getY());
                        frame.getLayeredPane().add(panel, JLayeredPane.MODAL_LAYER);
                    }
                });
                GroupLayout layout = new GroupLayout(frame.getContentPane());
                frame.getContentPane().setLayout(layout);
                layout.setHorizontalGroup(
                    layout.createParallelGroup(GroupLayout.Alignment.LEADING)
                    .addGroup(GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
                        .addContainerGap(317, Short.MAX_VALUE)
                        .addComponent(button)
                        .addContainerGap())
                );
                layout.setVerticalGroup(
                    layout.createParallelGroup(GroupLayout.Alignment.LEADING)
                    .addGroup(layout.createSequentialGroup()
                        .addContainerGap()
                        .addComponent(button)
                        .addContainerGap(266, Short.MAX_VALUE))
                );
                frame.setVisible(true);
            }
        });
    }
}

场景:

  1. 首先,您会看到一个带有按钮的框架。
  2. 当您单击它时,将在框架的分层窗格中将面板添加到框架中。
  3. 面板的位置是根据按钮位置计算的。
  4. 现在,当您调整框架大小时,按钮也会移动到框架的右侧,但面板不会。

我想以一种类似于位置按钮的方式添加面板。可能吗?如果是,那我该怎么做?

4

1 回答 1

1
  1. 使用组件监听器:

    frame.addComponentListener( new ComponentAdapter() {
        @Override
        public void componentResized( ComponentEvent e ) {
            panel.setLocation(button.getX() - button.getWidth() - 10, button.getY());
        }
    } );
    
  2. 覆盖框架的 setBounds() 方法并更新那里的位置。不建议这样做,因为此代码将在与实际调整大小相同的 EventDispatcher-Event 中执行,但它可能有助于避免使用组件侦听器时缓慢的重绘。

于 2012-07-20T12:07:11.253 回答