FillRect多次

时间:2018-02-22 11:05:44

标签: java graphics paintcomponent

fillRect-Method仅适用于第6行中的第一个“fillRect”。但不适用于第二个“fillRect”。我该怎么办?

public class VertikalerStrich extends JLabel {

    public void paintComponent(Graphics vs){
        int x=240;
        int y=460;

        vs.setColor(Color.BLACK);
        vs.fillRect(x, y, 20, 100);
        y = y+100;
        vs.fillRect(x, y, 20, 100);
    }
}

0 个答案:

没有答案