Java开发网 Java开发网
注册 | 登录 | 帮助 | 搜索 | 排行榜 | 发帖统计  

您没有登录

» Java开发网 » Java SE 综合讨论区  

按打印兼容模式打印这个话题 打印话题    把这个话题寄给朋友 寄给朋友    该主题的所有更新都将Email到你的邮箱 订阅主题
flat modethreaded modego to previous topicgo to next topicgo to back
作者 Re:隐藏窗口如何再显示出来 急急急!!!! [Re:java_wq]
snowbird2005

米兰大脑



发贴: 72
积分: 10
于 2005-06-13 00:48 user profilesend a private message to usersearch all posts byselect and copy to clipboard. 
ie only, sorry for netscape users:-)add this post to my favorite list
以下代码供参考:

import java.awt.Button;
import java.awt.FlowLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

import javax.swing.JFrame;

public class FirstFrame extends JFrame implements ActionListener
{
private Button firstButton,secondButton;
JFrame secondFrame = new JFrame("Second Frame");

public FirstFrame()
{
super("First Frame");

firstButton=new Button("show second frame");
setLayout(new FlowLayout());
firstButton.addActionListener(this);
add(firstButton);
setVisible(true);
setSize(300,300);
setDefaultCloseOperation(EXIT_ON_CLOSE);

secondButton=new Button("show first frame");
secondFrame.setLayout(new FlowLayout());
secondFrame.setSize(400,300);
secondFrame.add(secondButton);
secondFrame.setDefaultCloseOperation(EXIT_ON_CLOSE);

secondButton.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent e)
{
setVisible(true);
secondFrame.setVisible(false);
}

});

secondFrame.setVisible(false);
}

public void actionPerformed(ActionEvent e)
{
setVisible(false);
secondFrame.setVisible(true);
}

public static void main(String[] args)
{
new FirstFrame();
}

}




话题树型展开
人气 标题 作者 字数 发贴时间
6593 隐藏窗口如何再显示出来 急急急!!!! java_wq 74 2005-06-12 10:19
5796 Re:隐藏窗口如何再显示出来 急急急!!!! wanghang110119 30 2005-06-12 11:02
5698 Re:隐藏窗口如何再显示出来 急急急!!!! java_wq 16 2005-06-12 14:19
5711 Re:隐藏窗口如何再显示出来 急急急!!!! mesocool 17 2005-06-12 14:56
5724 Re:隐藏窗口如何再显示出来 急急急!!!! java_wq 42 2005-06-12 21:56
6485 Re:隐藏窗口如何再显示出来 急急急!!!! snowbird2005 1599 2005-06-13 00:48
5726 Re:隐藏窗口如何再显示出来 急急急!!!! java_wq 154 2005-06-13 17:05
5977 Re:隐藏窗口如何再显示出来 急急急!!!! snowbird2005 50 2005-06-13 18:16

flat modethreaded modego to previous topicgo to next topicgo to back
  已读帖子
  新的帖子
  被删除的帖子
Jump to the top of page

   Powered by Jute Powerful Forum® Version Jute 1.5.6 Ent
Copyright © 2002-2021 Cjsdn Team. All Righits Reserved. 闽ICP备05005120号-1
客服电话 18559299278    客服信箱 714923@qq.com    客服QQ 714923