java改变label的内容
importjava.awt.*;importjava.awt.event.*;publicclassshiyan1extendsFrameimplementsActio...
import java.awt.*;
import java.awt.event.*;
public class shiyan1 extends Frame implements ActionListener{
Button button;Label label;
public shiyan1(String s){
super(s);
setLayout(new GridLayout(1,2));
button=new Button("Button");
label=new Label("Label");
add(button);
add(label);
setSize(250,100);
setVisible(true);
}
public void actionPerformed(ActionEvent e){//这段要怎么变一下呢?
String msg=new String("Clicked");
if(e.getSource()==button){
label.setText(msg);
}
}
public static void main(String[]args){
shiyan1 shiyan=new shiyan1("My First Frame");
}
}
1.我现在的问题是点击button后,label的值不会变,但是我要达到的效果是,单击按钮Button,标签显示Clicked
2.ActionPerformed与mouseClicked有什么区别呢,在上面的程序中如果我把ActionPerformed换成mouseClicked就会报错 展开
import java.awt.event.*;
public class shiyan1 extends Frame implements ActionListener{
Button button;Label label;
public shiyan1(String s){
super(s);
setLayout(new GridLayout(1,2));
button=new Button("Button");
label=new Label("Label");
add(button);
add(label);
setSize(250,100);
setVisible(true);
}
public void actionPerformed(ActionEvent e){//这段要怎么变一下呢?
String msg=new String("Clicked");
if(e.getSource()==button){
label.setText(msg);
}
}
public static void main(String[]args){
shiyan1 shiyan=new shiyan1("My First Frame");
}
}
1.我现在的问题是点击button后,label的值不会变,但是我要达到的效果是,单击按钮Button,标签显示Clicked
2.ActionPerformed与mouseClicked有什么区别呢,在上面的程序中如果我把ActionPerformed换成mouseClicked就会报错 展开
展开全部
1,你虽然实现了JButton的点击事件,但是你并没有把button注册给监听器
添一行代码button.addActionListener(this);
2, MouseListener接口的方法mouseClicked()和ActionListener接口的
actionPerformed()方法是一样的作用,但MouseListener接口可以监听鼠标的详细事件,比如按下,抬起,移动等,而ActionListener只能监听组件的操作事件比如JButton的点击
下面的代码可以测试
你的窗体点击关闭不能关闭的
给你添加了addWindowListener(new WindowAdapter() {
public void windowClosing(WindowEvent e) {
System.exit(0);
}
});
方法
import java.awt.*;
import java.awt.event.*;
public class shiyan1 extends Frame implements ActionListener, MouseListener{
Button button;Label label;
public shiyan1(String s){
super(s);
setLayout(new GridLayout(1,2));
button=new Button("Button");
button.addActionListener(this);
button.addMouseListener(this);
label=new Label("Label");
add(button);
add(label);
setSize(250,100);
setVisible(true);
addWindowListener(new WindowAdapter() {
public void windowClosing(WindowEvent e) {
System.exit(0);
}
});
}
public void actionPerformed(ActionEvent e){//这段要怎么变一下呢?
String msg=new String("Clicked");
if(e.getSource()==button){
label.setText(msg);
}
}
public static void main(String[]args){
shiyan1 shiyan=new shiyan1("My First Frame");
}
public void mouseClicked(MouseEvent e) {
// TODO 自动生成方法存根
String msg=new String("Clicked");
if(e.getSource()==button){
label.setText(msg);
}
}
public void mouseEntered(MouseEvent arg0) {
// TODO 自动生成方法存根
}
public void mouseExited(MouseEvent arg0) {
// TODO 自动生成方法存根
}
public void mousePressed(MouseEvent arg0) {
// TODO 自动生成方法存根
}
public void mouseReleased(MouseEvent arg0) {
// TODO 自动生成方法存根
}
}
添一行代码button.addActionListener(this);
2, MouseListener接口的方法mouseClicked()和ActionListener接口的
actionPerformed()方法是一样的作用,但MouseListener接口可以监听鼠标的详细事件,比如按下,抬起,移动等,而ActionListener只能监听组件的操作事件比如JButton的点击
下面的代码可以测试
你的窗体点击关闭不能关闭的
给你添加了addWindowListener(new WindowAdapter() {
public void windowClosing(WindowEvent e) {
System.exit(0);
}
});
方法
import java.awt.*;
import java.awt.event.*;
public class shiyan1 extends Frame implements ActionListener, MouseListener{
Button button;Label label;
public shiyan1(String s){
super(s);
setLayout(new GridLayout(1,2));
button=new Button("Button");
button.addActionListener(this);
button.addMouseListener(this);
label=new Label("Label");
add(button);
add(label);
setSize(250,100);
setVisible(true);
addWindowListener(new WindowAdapter() {
public void windowClosing(WindowEvent e) {
System.exit(0);
}
});
}
public void actionPerformed(ActionEvent e){//这段要怎么变一下呢?
String msg=new String("Clicked");
if(e.getSource()==button){
label.setText(msg);
}
}
public static void main(String[]args){
shiyan1 shiyan=new shiyan1("My First Frame");
}
public void mouseClicked(MouseEvent e) {
// TODO 自动生成方法存根
String msg=new String("Clicked");
if(e.getSource()==button){
label.setText(msg);
}
}
public void mouseEntered(MouseEvent arg0) {
// TODO 自动生成方法存根
}
public void mouseExited(MouseEvent arg0) {
// TODO 自动生成方法存根
}
public void mousePressed(MouseEvent arg0) {
// TODO 自动生成方法存根
}
public void mouseReleased(MouseEvent arg0) {
// TODO 自动生成方法存根
}
}
展开全部
button.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e){//这段要怎么变一下呢?
String msg=new String("Clicked");
//if(e.getSource()==button){
label.setText(msg);
//}
}
});
public void actionPerformed(ActionEvent e){//这段要怎么变一下呢?
String msg=new String("Clicked");
//if(e.getSource()==button){
label.setText(msg);
//}
}
});
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
强悍!!!不过本人是菜鸟!!!高手可不可以解释一下这个:
addWindowListener(new WindowAdapter() {
public void windowClosing(WindowEvent e) {
System.exit(0);
}
});
不胜感激!!!!
addWindowListener(new WindowAdapter() {
public void windowClosing(WindowEvent e) {
System.exit(0);
}
});
不胜感激!!!!
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询