JPanel scorePanel = new JPanel();
scorePanel.setBackground(new Color(95 , 8 , 248 , 255));
JLabel scoreLabel = new JLabel("Score : 0" );
scoreLabel.setForeground(Color.white);
scoreLabel.setFont(new Font("Cambria" , Font.BOLD , 20));
scorePanel.add(scoreLabel);
Dimension d =new Dimension(scorePanel.getSize());
System.out.println(d);
此代碼段的輸出時與整個代碼一起運行是 - java.awt.Dimension中[寬度= 0,高度= 0]這是面板的實際尺寸嗎?
爲什麼會收到此輸出,當在scorepanel我有一個20號的標籤?是這個記事本的實際大小?
我打包到一個容器後得到這個輸出。 –
即使渲染框架? – mre