当前位置:  技术问答>java相关

请教:如何添加一个button到frame中,并捕获其点击事件??

    来源: 互联网  发布时间:2015-09-19

    本文导语:  请教:如何添加一个button到frame中,并捕获其点击事件??比如,点击该按钮则关闭frame!!! | import java.awt.*; import java.awt.event.*; class ClosingWindow extends Frame{  private Button b; public ClosingW...

请教:如何添加一个button到frame中,并捕获其点击事件??比如,点击该按钮则关闭frame!!!

|
import java.awt.*;
import java.awt.event.*;

class ClosingWindow extends Frame{ 
private Button b;
public ClosingWindow(){
super("Closing Window");
b=new Button("Close Window");
}


public void lanchFrame(){
this.setLayout(new FlowLayout());
this.setSize(300,300);
b.addActionListener(new  ActionListener(){
public void actionPerformed(ActionEvent e){
System.exit(0);
}
});
this.add(b);
this.setVisible(true);
}

public static void main(String[] args){ 
ClosingWindow cw = new ClosingWindow();
cw.lanchFrame();
}
}

|
JButton jButton1 = new JButton();
this.add(jButton1);
jButton1.addActionListener(new java.awt.event.ActionListener() {
    public void actionPerformed(ActionEvent e) {
      jButton1_actionPerformed(e);
    }
});

void jButton1_actionPerformed(ActionEvent e) {
  this.dispose();
}

|

void jButton1_actionPerformed(ActionEvent e) {
  this.dispose();
}改为
void jButton1_actionPerformed(ActionEvent e) {
  System.exit(0);
}


|
给你我改的一个例子,里面包含这个功能的
点“0”的时候就关闭了frame
import java.awt.*;
import java.awt.event.*;
public class MyCalculator implements ActionListener{
Frame f;
Panel p;
Button b1,b2,b3,b4,b5,b6,b7,b8,b9,b10,b11,b12,b13,b14,b15,b16;
TextField tf;
public static void main(String args[]){
MyCalculator mc=new MyCalculator();
mc.go();
}
public void go(){
f=new Frame("My Calculator");
p=new Panel();
p.setLayout(new GridLayout(4,4));
b1=new Button("7");
b2=new Button("8");
b3=new Button("9");
b4=new Button("+");
b5=new Button("4");
b6=new Button("5");
b7=new Button("6");
b8=new Button("-");
b9=new Button("1");
b10=new Button("2");
b11=new Button("3");
b12=new Button("*");
b13=new Button("0");
b14=new Button(".");
b15=new Button("=");
b16=new Button("/");
b1.addActionListener(this);
b2.addActionListener(this);
b3.addActionListener(this);
b4.addActionListener(this);
b5.addActionListener(this);
b6.addActionListener(this);
b7.addActionListener(this);
b8.addActionListener(this);
b9.addActionListener(this);
b10.addActionListener(this);
b11.addActionListener(this);
b12.addActionListener(this);
b13.addActionListener(this);
b14.addActionListener(this);
b15.addActionListener(this);
b16.addActionListener(this);
p.add(b1);
p.add(b2);
p.add(b3);
p.add(b4);
p.add(b5);
p.add(b6);
p.add(b7);
p.add(b8);
p.add(b9);
p.add(b10);
p.add(b11);
p.add(b12);
p.add(b13);
p.add(b14);
p.add(b15);
p.add(b16);
f.add(p,"Center");
tf=new TextField();
f.add(tf,"North");
f.setSize(200,150);
f.setVisible(true);
}
public void actionPerformed(ActionEvent e){
tf.setText(e.getActionCommand());
if(e.getActionCommand()=="0"){
System.exit(0);
}
}
}

    
 
 
 
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • 请教,请教,这个问题是为什么????
  • 请教本地硬盘安装问题请教本地硬盘安装问题
  • ■请教■请教redhat最基本的问题!
  • 请教一个 shell 问题,我用下面这个 shell 语句总是失败,请教
  • 高分请教,各位大侠,请教一个问题,理论高手请进??谢谢
  • 请教Linux下pgadmin3-1.0.2的编译和安装!!高分请教!
  • 各位大虾,请教装了REDHAT9操作系统后,启动时无法引导到LINUX,请教该如何解决啊
  • 请教,请教,,,一定要看!!一定要看!!
  • 请教高手,小弟打印width=1500,height=600(A3纸)的Applet,在预览中是该区域是黑的,打印出来也是黑的,请教高手解决一下
  • :请教高手,小弟打印width=1500,height=600(A3纸)的Applet,在预览中是该区域是黑的,打印出来也是黑的,请教高手解决一下
  • 请教象我这样的硬盘应如何安装Linux,我昨天试装了,但有问题。(老问题了,也看了前面的帖子,但还是来请教,请多指教)
  • 请教这种循环的执行过程
  • 请教两个redhat9问题
  • 请教如何在指定目录下查找包含指定文字的文件
  • 请教局域网中如何通过ip地址得到主机名
  • 请教kdevelop的问题
  • 请教linux 下的adsl拨号问题.
  • 请教,如何用虚拟订机安装liux
  • 【请教】LINUX 下SNMP的MIB开发
  • 请教一个opengl的问题


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3