在一项地雷项目中,我一直试图在JPanel witch上增加一名JConsonle,由另一个JPanel控制。
问题是,JConsole从JPanel上排5px。 在I tought, 它是固定床位的集装箱,但在给它留下了红色的背景之后,我认识到,ole正在从顶头上 set5px。
I ve also tried to use BorderLayout to set it in the NORTH or CENTER of the JPanel but that dosent work either.
这是我的法典:
public class MonopolyPanel extends JPanel {
JPanel consoleP = new JPanel();
JConsole console = new JConsole();
MonopolyPanel(){
this.setLayout(new BoxLayout(this, BoxLayout.Y_AXIS));
console.setPreferredSize(new Dimension(530, 300));
consoleP.add(console);
this.add(consoleP);
}
}