Java怎样弹出对应的对话框?
我有两个按钮A和B想要点击A的时候弹出A对话框点击B的时候弹出B对话框写在同一个MouseListener中谢谢...
我有两个按钮A和B
想要点击A的时候弹出A对话框
点击B的时候弹出B对话框
写在同一个MouseListener中
谢谢 展开
想要点击A的时候弹出A对话框
点击B的时候弹出B对话框
写在同一个MouseListener中
谢谢 展开
若以下回答无法解决问题,邀请你更新回答
1个回答
展开全部
添加按钮事件吧。下面是我写的一个例子,你自己看看吧!个人认为你要实现的功能用按钮事件实现比较好点,如果是鼠标事件的话,道理一样。你只需要在鼠标事件的相应方法里取得当前按钮就可以了!!!有什么其他问题你可以给我邮箱发邮件zhaotao_king@163.com
import java.awt.Container;
import java.awt.GridLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import javax.swing.JButton;
import javax.swing.JFrame;
public class ButtonAB extends JFrame implements ActionListener {
private JButton b1, b2;
public ButtonAB() {
this.setTitle("按钮事件测试");
Container c = this.getContentPane();
//使用表格布局1行2列
c.setLayout(new GridLayout(1, 2));
b1 = new JButton("A");
b2 = new JButton("B");
/*为按钮b1,b2添加按钮事件*/
b1.addActionListener(this);
b2.addActionListener(this);
c.add(b1);
c.add(b2);
this.setSize(500, 100);
this.setVisible(true);
this.addWindowListener(new WindowAdapter() {
public void windowClosing(WindowEvent e) {
System.exit(0);
}
});
}
/*按钮事件的响应方法*/
public void actionPerformed(ActionEvent e) {
//通过getSource方法获得当前按钮的对象
if(e.getSource() == b1) {
System.out.println("点击“A”执行的内容");
/*
* 将A按钮的对应的对话框执行代码写在这个位置
*
* */
}
//通过getActionCommand方法获得当前按钮的名称
if(e.getActionCommand().equals("B")) {
System.out.println("点击“B”执行的内容");
/*
* 将B按钮的对应的对话框执行代码写在这个位置
*
* */
}
}
public static void main(String[] args) {
new ButtonAB();
}
}
}
import java.awt.Container;
import java.awt.GridLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import javax.swing.JButton;
import javax.swing.JFrame;
public class ButtonAB extends JFrame implements ActionListener {
private JButton b1, b2;
public ButtonAB() {
this.setTitle("按钮事件测试");
Container c = this.getContentPane();
//使用表格布局1行2列
c.setLayout(new GridLayout(1, 2));
b1 = new JButton("A");
b2 = new JButton("B");
/*为按钮b1,b2添加按钮事件*/
b1.addActionListener(this);
b2.addActionListener(this);
c.add(b1);
c.add(b2);
this.setSize(500, 100);
this.setVisible(true);
this.addWindowListener(new WindowAdapter() {
public void windowClosing(WindowEvent e) {
System.exit(0);
}
});
}
/*按钮事件的响应方法*/
public void actionPerformed(ActionEvent e) {
//通过getSource方法获得当前按钮的对象
if(e.getSource() == b1) {
System.out.println("点击“A”执行的内容");
/*
* 将A按钮的对应的对话框执行代码写在这个位置
*
* */
}
//通过getActionCommand方法获得当前按钮的名称
if(e.getActionCommand().equals("B")) {
System.out.println("点击“B”执行的内容");
/*
* 将B按钮的对应的对话框执行代码写在这个位置
*
* */
}
}
public static void main(String[] args) {
new ButtonAB();
}
}
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询