Jay*_*zie 5 java swing paintcomponent
我只是实现了继承JPanel的类,如下所示
public class Orpanel extends JPanel {
....
@Override
public void paintComponent(Graphics g) {
super.paintComponent(g);
Graphics2D g2d = (Graphics2D)g;
g2d.setPaint(tpaint);
g2d.fill(rect);
}
....
}
Run Code Online (Sandbox Code Playgroud)
Orpanel正在加载图像并调整它自己的大小.
这是问题.
调用JFrame的setContentpane(Orpanel的实例)使它工作正常但是当我将Orpanel附加到JFrame时调用add()方法而不是setContentpane(我知道setcontentpane并不意味着附加..无论如何),它不起作用.
最后想通了当我使用add()方法时,添加到JFrame的Component不会调用paintComponent()方法.即使我手动调用repaint()方法,仍然不会调用paintComponent()方法.
我错过了什么?任何帮助将不胜感激!
thx提前.Jaeyong shin.
我添加了额外的代码.
public Test(OwPanel op)
{
super();
Dimension monitor = Toolkit.getDefaultToolkit().getScreenSize();
op.setBackground(Color.white);
this.setBackground(Color.white);
this.setBounds(monitor.width / 2 - 200 , monitor.height / 2 - 200, 400, 400);
this.setDefaultCloseOperation(EXIT_ON_CLOSE);
this.setTitle("test");
this.setLayout(null);
this.getContentPane().add(op);
//this.setContentPane(op);
this.setVisible(true);
this.validate();
}
public static void main(String[] args) {
// TODO Auto-generated method stub
SwingUtilities.invokeLater(new Runnable() {
@Override
public void run() {
OwPanel op = new OwPanel("d:\\java_workplace\\img\\img1.jpg", 100, 100);
OwLabel ol = new OwLabel("d:\\java_workplace\\img\\img2.jpg", 300, 50);
Test tst = new Test(op);
tst.add(ol);
}
});
Run Code Online (Sandbox Code Playgroud)
如果将setContentpane()方法替换为getContentpane().add(),则仍然无效.不要混淆.Owpanel和Orpanel是一样的:)
在你的示例代码中,我看到你选择了不使用LayoutManager,这是一个非常糟糕的主意,但无论如何,你是这样走的,我看到你Orpanel.paintComponent()被调用的一个原因:它可能在框架内不可见!
如果没有LayoutManager,则必须明确设置setBounds()添加到框架中的所有组件的大小和位置(直通).
很可能你没有这样做,因此Orpanel实例的大小可能是0因此它永远不会被绘制.