如何在java程序中,当点击一个按钮后,关闭当前窗口,开启一个新的窗口?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何在java程序中,当点击一个按钮后,关闭当前窗口,开启一个新的窗口?相关的知识,希望对你有一定的参考价值。
JButton btn=new JButton(new AbstractAction("关闭并打开") @Override public void actionPerformed(ActionEvent e) oldFrame.dispose();// 关闭并销毁,无需销毁可采用oldFrame.setVisible(false); newFrame.setVisible(true);// 打开新窗口 );import javax.swing.*;
import java.awt.Rectangle;
import java.awt.event.*;
public class Swing7 extends JFrame implements ActionListener
JButton jb = new JButton();
public Swing7()
this.setTitle("Java——");
jb.setText("确定");
jb.setMnemonic('a');
this.add(jb);
this.setBounds(200, 300, 250, 300);
ctionListener就是Swing7实例。
public void actionPerformed(ActionEvent e) // 实现ActionListener接口的actionPerformed接口。
JFrame frame = new JFrame("新窗口");//构造一个新的JFrame,作为新窗口。
frame.setBounds(// 让新窗口与Swing7窗口示例错开50像素。
new Rectangle(
(int) this.getBounds().getX() + 50,
(int) this.getBounds().getY() + 50,
(int) this.getBounds().getWidth(),
(int) this.getBounds().getHeight()
)
);
JLabel jl = new JLabel();// 注意类名别写错了。
frame.getContentPane().add(jl);
jl.setText("这是新窗口");
jl.setVerticalAlignment(JLabel.CENTER);
jl.setHorizontalAlignment(JLabel.CENTER);// 注意方法名别写错了。
frame.setVisible(true);
public static void main(String args[])
Swing7 s = new Swing7();
假设本身是Form1,第二个窗口是Form2,你双击按钮进入那个按钮的点击事件,编写以下代码:
Form2 f2=new Form2();
f2.Show();
this.Hide();
简单的程序代码,运用代码就可以完美解决
微信小程序悬浮按钮怎么出来
参考技术A 手机使用微信时,为了方便随时查看小程序,想要设置小程序的悬浮,那么微信小程序悬浮按钮怎么出来,为此本篇介绍以下方法。手机打开微信,在发现页面,点击【小程序】。
在小程序页面,点击一个小程序,比如:百度网盘。
在小程序,点击右上角的三个点。
页面下方出现选项,点击【浮窗】。
完成后,返回页面,就可以看到微信小程序悬浮按钮已经出来了。
以上是关于如何在java程序中,当点击一个按钮后,关闭当前窗口,开启一个新的窗口?的主要内容,如果未能解决你的问题,请参考以下文章