Swing组件中,如何用一个BUTTON弹出一个新窗口?

急!!!... 急!!! 展开
 我来答
日月雨林Ry
推荐于2017-11-23 · TA获得超过171个赞
知道小有建树答主
回答量:133
采纳率:0%
帮助的人:162万
展开全部
在JButton 的事件中 new 一个窗口然后 设置窗口为可见的

例如 dialog.setVisble(true);
下面是一个示例:

import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.JDialog;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;

/**
*
* @author guan
*/
public class FrameDemo extends JFrame {

JButton loginButton =null;
JButton exitButton = null;
JPanel mainPanel =null;
JDialog dialog =null;

public FrameDemo() {
loginButton = new JButton("Login");
exitButton = new JButton("Exit");

loginButton.addActionListener(new ActionListener() {

public void actionPerformed(ActionEvent e) {
showDialog(); //显示窗口
}
});

exitButton.addActionListener(new ActionListener() {

public void actionPerformed(ActionEvent e) {
System.exit(0); //关闭窗口
}
});

mainPanel = new JPanel();
mainPanel.add(loginButton);
mainPanel.add(exitButton);
this.add(mainPanel); //将主面板添加到frame中

}

/**
* 显示对话框
*/
private void showDialog(){
this.setVisible(false);
dialog = new JDialog(this, true);
dialog.setDefaultCloseOperation(JDialog.HIDE_ON_CLOSE);
dialog.setSize(300,180);
dialog.setTitle("DialogTest");
dialog.add(new JLabel("这个是对话框"));
dialog.setLocationRelativeTo(this);
dialog.setVisible(true); //显示对话框,窗口阻塞,不往下执行,只有等到对话框关闭了才往下执行。

//判断主窗口是否是隐藏的,如果是隐藏的就显示
if (!this.isVisible()) {
this.setVisible(true);
}

}

public static void main(String[] args) {
JFrame frame = new FrameDemo();
frame.setTitle("JFrame Demo");
frame.setSize(500, 300);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setLocationRelativeTo(null);
frame.setVisible(true);
}
}
青鸟中关村专家
推荐于2016-11-26 · 知道合伙人软件行家
青鸟中关村专家
知道合伙人软件行家
采纳数:1734 获赞数:8440
就职于北大青鸟中关村,自2004年踏入北大青鸟这个行业,已经有11年工作经验和8年的培训经验,寓教于乐

向TA提问 私信TA
展开全部
为button注册点击事件,在事件处理程序中实例化另一个窗口对象,并将其设置为setVisible(true)即可

class MyForm extends JFrame implements ActionListener{
private JButton btn=new JButton("弹出新窗口");

public MyForm(){

this.setLayout(new FlowLayout());

this.add(btn);

btn.addActionListener(this);

}
public void actionPerformed(ActionEvent event){

MainFrame main=new MainFrame();

main.setTitle("主窗体");

main.setLocation(300,200);

main.setVisible(true);

}
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式