1

我有两个 JPanel,我应该在左上角,但由于某种原因,它们位于 y 轴的一半(但仍然在左边,所以 x 轴为 0)。无论如何,我都会在这里发布我的代码,我认为这样更容易理解我的问题。提前感谢您的帮助。

 JFrame scrabbleBoard = new JFrame();                              
    scrabbleBoard.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);     

    Container topPane = scrabbleBoard.getContentPane();               
    topPane.setLayout(new BoxLayout(topPane, BoxLayout.X_AXIS));   

    JButton done = new JButton ("Done");                              
    JLabel player1 = new JLabel ("Player 1");

    topPane.add(player1);        
    topPane.add(done);        

    scrabbleBoard.pack();
    scrabbleBoard.setVisible(true); 
4

1 回答 1

4

采用:

done.setAlignmentY(Component.TOP_ALIGNMENT);
player1.setAlignmentY(Component.TOP_ALIGNMENT);

请参阅:修复对齐问题

于 2012-11-21T21:26:37.710 回答