java通过点击按钮创建了一个了一个新窗口,想通过该新窗口的按钮退出这个新框而不是整个程序,怎么做

 我来答
LMLU23
2014-11-19 · TA获得超过901个赞
知道小有建树答主
回答量:373
采纳率:0%
帮助的人:365万
展开全部
JFrame.setDefaultCloseOperation(
WindowConstants.DISPOSE_ON_CLOSE);

下面是setDefaultCloseOperation的JAVADOC

public void setDefaultCloseOperation(int operation)

Sets the operation that will happen by default when the user initiates a "close" on this frame. You must specify one of the following choices:

The value is set to HIDE_ON_CLOSE by default. Changes to the value of this property cause the firing of a property change event, with property name "defaultCloseOperation".
Note: When the last displayable window within the Java virtual machine (VM) is disposed of, the VM may terminate. See AWT Threading Issues for more information.
DO_NOTHING_ON_CLOSE (defined in WindowConstants): Don't do anything; require the program to handle the operation in the windowClosing method of a registered WindowListener object.
HIDE_ON_CLOSE (defined in WindowConstants): Automatically hide the frame after invoking any registered WindowListener objects.
DISPOSE_ON_CLOSE (defined in WindowConstants): Automatically hide and dispose the frame after invoking any registered WindowListener objects.
EXIT_ON_CLOSE (defined in JFrame): Exit the application using the System exit method. Use this only in applications.
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
几度平淡
推荐于2016-09-13 · 超过49用户采纳过TA的回答
知道答主
回答量:153
采纳率:0%
帮助的人:103万
展开全部
如果 button名叫A 新建窗口为 UI
this.A.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
dispose();
new UI();

}
更多追问追答
追问
dispose();把主窗口给隐藏了,我想的是隐藏或者关闭新窗口
追答
你这个写到你的新窗口就行。。。
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
找红太郎的灰灰
2014-11-19 · TA获得超过285个赞
知道小有建树答主
回答量:221
采纳率:0%
帮助的人:189万
展开全部
如果你不是通过线程创建的话 只能隐藏 不能关闭
追问
怎么做,dipose?
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
生活he家
2014-11-19 · 一个属于大家的搬运工
生活he家
采纳数:1536 获赞数:6828

向TA提问 私信TA
展开全部
不明白你的意思是什么
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式