Java开发网 Java开发网
注册 | 登录 | 帮助 | 搜索 | 排行榜 | 发帖统计  

您没有登录

» Java开发网 » Java SE 综合讨论区  

按打印兼容模式打印这个话题 打印话题    把这个话题寄给朋友 寄给朋友    该主题的所有更新都将Email到你的邮箱 订阅主题
flat modethreaded modego to previous topicgo to next topicgo to back
作者 请教一个关于swing界面刷新的问题。
pilgrimhuyu





发贴: 9
积分: 0
于 2003-05-19 11:35 user profilesend a private message to usersearch all posts byselect and copy to clipboard. 
ie only, sorry for netscape users:-)add this post to my favorite list
我想要点击jButton1后jLabel1、jLabel2作一个计数显示,但jLabel1只显示最后的结果,没有刷新的过程,是不是jLabel1的双缓存在作用。请高手指教。谢谢!

import javax.swing.*;
import com.borland.jbcl.layout.*;
import java.awt.*;
import java.awt.event.*;

/**
* <p>Title: </p>
* <p>Description: </p>
* <p>Copyright: Copyright Coffee 2003</p>
* <p>Company: </p>
* @author not attributable
* @version 1.0
*/

public class Test
extends JFrame {
XYLayout xYLayout1 = new XYLayout();
JLabel jLabel1 = new JLabel();
JLabel jLabel2 = new JLabel();
JButton jButton1 = new JButton();

public Test() {
try {
jbInit();
}
catch(Exception e) {
e.printStackTrace();
}
}

public static void main(String[] args) {
Test test = new Test();
test.pack();
}

private void jbInit() throws Exception {
jLabel1.setText("jLabel1");
this.getContentPane().setLayout(xYLayout1);
jLabel2.setText("jLabel2");
jLabel1.setDoubleBuffered(true);
jLabel2.setDoubleBuffered(true);

jButton1.setText("jButton1");
jButton1.addActionListener(new Test_jButton1_actionAdapter(this));
this.getContentPane().add(jLabel1, new XYConstraints(48, 48, 111, 41));
this.getContentPane().add(jLabel2, new XYConstraints(200, 45, 122, 44));
this.getContentPane().add(jButton1, new XYConstraints(42, 129, 93, 44));
this.pack();
this.setVisible(true);
}

void jButton1_actionPerformed(ActionEvent e) {
for (int i = 0; i < 10000; i++) {
jLabel1.setText("1: " + i);
jLabel2.setText("1: " + i);
jLabel1.repaint();
jLabel2.repaint();
this.repaint();

}
}
}

class Test_jButton1_actionAdapter implements java.awt.event.ActionListener {
Test adaptee;

Test_jButton1_actionAdapter(Test adaptee) {
this.adaptee = adaptee;
}
public void actionPerformed(ActionEvent e) {
adaptee.jButton1_actionPerformedEnvelope;
}
}




[转帖]面向对象的思维方法

话题树型展开
人气 标题 作者 字数 发贴时间
3646 请教一个关于swing界面刷新的问题。 pilgrimhuyu 1934 2003-05-19 11:35
2820 Re:请教一个关于swing界面刷新的问题。 yakuu 90 2003-05-19 20:21
2896 Re:请教一个关于swing界面刷新的问题。 pilgrimhuyu 26 2003-05-21 10:48
2654 Re:请教一个关于swing界面刷新的问题。 ww2003 34 2003-05-22 11:07

flat modethreaded modego to previous topicgo to next topicgo to back
  已读帖子
  新的帖子
  被删除的帖子
Jump to the top of page

   Powered by Jute Powerful Forum® Version Jute 1.5.6 Ent
Copyright © 2002-2021 Cjsdn Team. All Righits Reserved. 闽ICP备05005120号-1
客服电话 18559299278    客服信箱 714923@qq.com    客服QQ 714923