我试图用JPanel填充JFrame并为该JPanel着色,但是由于某种原因,我在右下角得到了边框。
我的代码:
public class Main extends JFrame {
public MyPanel myPanel = new MyPanel();
public static void main(String args[])
{
Main main = new Main();
main.init();
}
public void init()
{
this.setSize(300,400);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
this.setContentPane(myPanel);
this.setVisible(true);
}
@Override
public void paint(Graphics g)
{
myPanel.paintComponents(g);
}
class MyPanel extends JPanel
{
@Override
public void paintComponents(Graphics g)
{
g.fillRect(0, 0, getWidth(), getHeight());
}
}
}
显示:
最佳答案
您使用这种方法使油漆链短路
@Override
public void paint(Graphics g) {
myPanel.paintComponents(g);
}
这实际上并没有做任何有用的事情,因此您可以将其删除。另外,您需要覆盖
paintComponent
而不是paintComponents
中的MyPanel
@Override
public void paintComponent(Graphics g) {
super.paintComponent(g);
g.fillRect(0, 0, getWidth(), getHeight());
}
在旁边:
您可能只需创建一个面板并调用
setBackground
即可获得此功能。