首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > JAVA > J2SE开发 >

PaintComponent不能被调用啊咋回事。

2012-04-01 
PaintComponent不能被调用啊!怎么回事。。??import java.awt.Graphicsimport javax.swing.*public class T

PaintComponent不能被调用啊!怎么回事。。??
import java.awt.Graphics;

import javax.swing.*;


public class TestPaintComponent extends JFrame {
public TestPaintComponent(){
add(new NewLabel("Banner"));
}
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
TestPaintComponent frame = new TestPaintComponent();
frame.setTitle("TestPaintCompinent");
frame.setLocationRelativeTo(null);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setSize(300,200);
frame.setVisible(true);

}
}

class NewLabel extends JLabel {
public NewLabel(String text){
super(text);

}
protected void painComponent(Graphics g){
super.paintComponent(g);
g.drawLine(0, 0, 50, 50);
}
}



这个程序画不出线来,感觉painComponent没有被调用..怎么回事啊!?

[解决办法]
paintComponent被你写成painComponent了

热点排行