gpt4 book ai didi

java - 找不到方法 setModal(boolean)

转载 作者:行者123 更新时间:2023-12-01 09:15:34 24 4
gpt4 key购买 nike

为什么我无法调用setModal()方法?

我正在开发 GUI。我有两个 jframe。以下代码用于一个按钮,应该打开另一个框架。但我收到错误消息:

cannot find method setModal(boolean)

 private void jButton3_actionPerformed(ActionEvent e) 
{
HR hr = new HR();
if(f == 1){ // condition
hr.setModal(true); // give me error here ?
hr.setVisible(true);
}else{
jLabel5.setText("You aren't connected...");
}
}

hr.java

import java.awt.Dimension;

import javax.swing.JFrame;

public class HR extends JFrame {
public HR() {
try {
jbInit();
} catch (Exception e) {
e.printStackTrace();
}
}

private void jbInit() throws Exception {
this.getContentPane().setLayout( null );
this.setSize( new Dimension(400, 300) );
}

}

最佳答案

I am working on GUI I have two jframes

应用程序应该只有一个父JFrame。其他子窗口应该是 JDialog 并且您将框架指定为父窗口。

JDialog 确实有 setModal(...) 方法。

创建 JDialog 的方式与创建 JFrame 的方式相同。

关于java - 找不到方法 setModal(boolean),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40564805/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com