4个回答
展开全部
import java.awt.Button;
import java.awt.Frame;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
class MyButton extends Frame implements ActionListener {
Button button;
MyButton(String s) {
super(s);
button = new Button();
button.setLabel("你好");
button.addActionListener(this);
this.add(button);
this.setBounds(100, 100, 100, 100);
this.setVisible(true);
this.validate();
}
public void actionPerformed(ActionEvent e) {
if(button.getLabel().equals("你好")) {
button.setLabel("hello");
} else {
button.setLabel("你好");
}
}
}
public class TestButton {
public static void main(String[] args) {
new MyButton("TestButton");
}
}
import java.awt.Frame;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
class MyButton extends Frame implements ActionListener {
Button button;
MyButton(String s) {
super(s);
button = new Button();
button.setLabel("你好");
button.addActionListener(this);
this.add(button);
this.setBounds(100, 100, 100, 100);
this.setVisible(true);
this.validate();
}
public void actionPerformed(ActionEvent e) {
if(button.getLabel().equals("你好")) {
button.setLabel("hello");
} else {
button.setLabel("你好");
}
}
}
public class TestButton {
public static void main(String[] args) {
new MyButton("TestButton");
}
}
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你是问的swt还是网页啊?如果说是网页的话就是
<input type="button" value="变" onclick="this.value='想变的文字';"/>
<input type="button" value="变" onclick="this.value='想变的文字';"/>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
是SWING的话用监听器,是HTML的话用onclick搞定,都是设置他的text
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询