我正在尝试为程序分配构建GUI,该分配本质上在顶部具有2个按钮,从左侧开始,在右侧恢复,面板位于底部。但它告诉我:


  错误:requestFocusInWindow(boolean)已保护访问
  组件


我以前曾经碰到过这个问题,我觉得我不明白这意味着我在Google周围搜索的任何人都做出了很好的解释,而且似乎找不到任何东西,因此我认为这可能很愚蠢。

这是我用来构造GUI的代码:

import javax.swing.*;
import java.awt.*;

public class PendulumWindow {

    protected JFrame pendFrame;
    protected JPanel pendPanel;
    protected JButton resume;
    protected final int SIZE_X = 500;
    protected final int SIZE_Y = 450;
    protected Dimension pendPanSize = new Dimension(SIZE_X, SIZE_Y);

    public PendulumWindow() {

    }

    public PendulumWindow(String s) {
        makePanel();
        makeFrame();
    }

    public void makePanel() {
        pendPanel = new JPanel();

        pendPanel.setPreferredSize(pendPanSize);
        pendPanel.setFocusable(true);
        pendPanel.requestFocusInWindow(true);
        pendPanel.setBackground(Color.BLUE);
   }

   public void makeFrame() {
        pendFrame = new JFrame("Pendulum");
        start = new JButton("start");
        resume = new JButton("resume");

        //---------- FRAME PROPERTIES ----------//

        pendFrame.setSize(500,500);
        pendFrame.setVisible(true);
        pendFrame.setResizable(true);
        pendFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

        //---------- ADD ELEMENTS TO FRAME ----------//

        pendFrame.setLayout(new BorderLayout());
        pendFrame.add(start, BorderLayout.WEST);
        pendFrame.add(resume, BorderLayout.EAST);
        // pendFrame.add(pendPanel, BorderLayout.SOUTH);
   }

   public static void main(String[] args) {
        PendulumWindow window = new PendulumWindow("Pendulum");
   }
}

最佳答案

文档显示requestFocusInWindow(boolean)protected,因此只能由JComponent的子类调用。相反,您应该使用可公开访问的requestFocusInWindow

10-08 03:30