LINUKS BLOG

Make progress is the topic for ever...

My Photo
Name:
Location: China

It's a fans of computer/ Computer is my favorite/ Making progress is the topic for ever...

Monday, October 23, 2006

JPROGRESSbAR

在上一篇中我提到了JProgressBar,也就是进度条这个概念.下面写出一段关于它的片段:
JProgressBar progress=new JProgressBar();
progress.setStringPainted(true);
progress.setBorderPainted(false);
progress.setString("Wait for a moment...");
progress.setBackground(Color.BLACK);
再加上上一篇中的那一句
progress.setValue(progress.getValue()+1);
也就构成了一段完整的关于进度条的代码;这段代码中也没有什么要解释的,在这儿就不再详

述.主要是记住并理解它...

0 Comments:

Post a Comment

<< Home