当前位置:  开发笔记 > 编程语言 > 正文

单击按钮,在Java中设置标签

如何解决《单击按钮,在Java中设置标签》经验,为你挑选了1个好方法。

在我正在使用的小程序中button.点击按钮3次可以设置三个标签吗?



1> Luc125..:

你的意思是这样的吗?

int count = 0;
String[] texts = new String[] {"Text 1", "Text 2", "Text 3"};

yourButton.addActionListener(new ActionListener() {

    public void actionPerformed(ActionEvent ae) {
        if(count < 3) yourLabel.setText(texts[count]);
        count++;
    }

});

推荐阅读
罗文彬2502852027
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有