[阅读: 391] 2005-11-29 07:39:39
public MyCanvas(Composite arg0, int arg1)
{
super(arg0, arg1);
addPaintListener(new PaintListener () {
public void paintControl(PaintEvent event){
GC gc = event.gc;
gc.setBackground(new Color(null, 0,0,0));
gc.setForeground(red);
Rectangle rect = getClientArea();
gc.fillRectangle(rect.x,rect.y,rect.width, rect.height);
}
});
}
生活不是你呼吸了多少空气,生活是那些令你无法呼吸的时刻