0
我試圖從另一個類ABC的名爲testView的類中顯示一個窗口。窗口包含一個按鈕。我想關閉該按鈕上的窗口。我如何關閉它?關閉按鈕上的容器單擊
public class testView extends JFrame {
protected JButton closeButton = new JButton("Close");
testView(){
this.setSize(1000,700);
this.setTitle("Test");
Container window = getContentPane();
window.setLayout(new FlowLayout());
this.setResizable(false);
window.add(closeButton);
}
}
public class ABC{
public static void main(String[] args) {
testView View = new testView();
View.setVisible(true);
}
}
從另一個類ABC顯示窗口。如何關閉按鈕單擊窗口?
只需使用Dispose()方法關閉它 –