我有一个JFrame
,其中有一些选择。当按下“确定”按钮时,我希望它JFrame
清除内容并添加新内容。我已经尝试过,但是JFrame
弹出的问题是新的。我究竟做错了什么?
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.io.IOException;
import java.net.InetAddress;
import java.net.UnknownHostException;
import java.util.logging.Level;
import java.util.logging.Logger;
import javax.swing.*;
public class GuiFrame extends JFrame {
final JFrame f = new JFrame("Test");
public void Starter(){
ImageIcon img = new ImageIcon("C:\\Users\\neal\\Desktop\\no.png");
f.setIconImage(img.getImage());
ButtonGroup group = new ButtonGroup();
final JRadioButton Acess = new JRadioButton("Acess");
final JRadioButton Chat = new JRadioButton("Chat");
group.add(Acess);
group.add(Chat);
f.setSize(400,100);
f.setLocationRelativeTo(null);
JButton OptionOk = new JButton("OK");
Label option = new Label("Choose a Option");
final Container content = f.getContentPane();
content.setBackground(Color.white);
content.setLayout(new FlowLayout());
content.add(option);
content.add(Acess);
content.add(Chat);
content.add(OptionOk);
f.setVisible(true);
f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
OptionOk.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
try {
new GuiFrame().Initiate();
} catch (UnknownHostException ex) {
Logger.getLogger(GuiFrame.class.getName()).log(Level.SEVERE, null, ex);
}
}
});
}
public void Initiate() throws UnknownHostException {
f.removeAll();
ButtonGroup group = new ButtonGroup();
final JRadioButton ButtonServer = new JRadioButton("Server");
final JRadioButton ButtonClient = new JRadioButton("Client");
group.add(ButtonServer);
group.add(ButtonClient);
f.setSize(400, 100);
f.setLocationRelativeTo(null);
InetAddress thisIp = InetAddress.getLocalHost();
ImageIcon img = new ImageIcon("C:\\Users\\neal\\Desktop\\no.png");
f.setIconImage(img.getImage());
Label lip = new Label("Your IP is : " + thisIp.getHostAddress());
Label setup = new Label("Setup as ");
JButton ButtonOk = new JButton("OK");
final Container content = f.getContentPane();
content.setBackground(Color.white);
content.setLayout(new FlowLayout());
content.add(lip);
content.add(setup);
content.add(ButtonServer);
content.add(ButtonClient);
content.add(ButtonOk);
f.setVisible(true);
f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
public static void main(String[] args) throws UnknownHostException {
GuiFrame gf = new GuiFrame();
gf.Starter();
}
}
解决方案很简单:使用CardLayout并让此布局管理器为您完成所有繁重的工作。有关如何执行此操作的更多详细信息,请参见教程:如何使用CardLayout。
至于您的代码,请注意,实际上它在启动时实际上创建了两个JFrame,如果按下JButton,则另外创建了两个:
GuiFrame类本身扩展了JFrame,但它似乎是您从未使用过的JFrame,因此被浪费了,但是无论如何,它是在程序启动时以及每当创建GuiFrame实例(例如按下按钮)时创建的。然后在该类内部创建另一个JFrame
f,一个在程序启动时,再一次在按下按钮时,我认为这不是您想要的。
因此,请更改代码,以使该类不扩展JFrame,并且不要在按钮的ActionListener中创建该类的新实例。而是使用CardLayout交换视图。
例如:
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.*;
public class GuiFrame {
private static final String FIRST_PANEL = "First Panel";
private static final String SECOND_PANEL = "Second Panel";
final JFrame f = new JFrame("Test");
private CardLayout cardLayout = new CardLayout();
private JPanel content;
public void Starter() {
f.setSize(400, 100);
f.setLocationRelativeTo(null);
JButton OptionOk = new JButton("OK");
Label option = new Label("Choose a Option");
content = (JPanel) f.getContentPane();
content.setLayout(cardLayout);
JPanel firstPanel = new JPanel();
firstPanel.setBackground(Color.white);
firstPanel.setLayout(new FlowLayout());
firstPanel.add(option);
firstPanel.add(OptionOk);
content.add(firstPanel, FIRST_PANEL);
content.add(createSecondPanel(), SECOND_PANEL);
f.setVisible(true);
f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
OptionOk.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
cardLayout.show(content, SECOND_PANEL);
}
});
}
private JPanel createSecondPanel() {
JPanel secondPanel = new JPanel();
secondPanel.add(new JButton(new AbstractAction("Go Back") {
public void actionPerformed(ActionEvent e) {
cardLayout.show(content, FIRST_PANEL);
}
}));
return secondPanel;
}
public static void main(String[] args) {
GuiFrame gf = new GuiFrame();
gf.Starter();
}
}
问题内容: 我想在运行时按下按钮时向JFrame中添加一些新组件。到目前为止,该方法仍然有效,但是我必须手动调整窗口大小才能看到新组件。 有什么我可以触发的动作或可以调用的方法来刷新窗口吗?任何帮助表示赞赏。提前致谢。 问题答案: 你必须去框架。如果这样不起作用,您还必须致电
问题内容: 我已经看到了几种有神论的方法,它们似乎都起作用,但是我只是想知道一种方法是否比另一种更好。 例如,一个叫你可以这样做: 您还可以执行以下操作: 这些“正确”之一吗? 问题答案: 来自类javadoc的文字副本 JFrame类与Frame略有不兼容。像所有其他JFC / Swing顶级容器一样,JFrame包含JRootPane作为其唯一的子级。根窗格提供的内容窗格通常应包含JFrame
问题内容: 我现在有一个发送HTTP请求的SwingWorker,并且我重写了SwingWorker的done()方法来更改JFrame中的内容。我想基本上删除所有内容,并根据服务器返回的值在JFrame上添加一个新的成员面板。 现在,我面临的问题是,当我在JFrame上调用以下方法时,它不会从JFrame中删除任何内容,也不会更改它在Frame中包含的内容。 我当前的修复方法如下,但我宁愿更改J
问题内容: 我有两节课 我的主要班级创建了一个框架,我希望另一个班级为其添加内容。一读arroudn告诉我,我应该使用组件来执行此操作,但是当我运行代码时,框架为空。 我的Component类创建一个JLabel 我没有任何编译错误,但是我的JFrame中没有任何文本。 谁能解释我在做什么错? 克里斯 问题答案: 您需要 添加 的。最好扩展而不是扩展,因为它具有默认的布局管理器,并且无需设置组件大
所以我开始学习OOP,也开始学习swing库,但我遇到了麻烦。当我试图删除所有JFrame组件时,它不起作用。我想做的是,当用户单击一个按钮时,我必须删除所有JFrame组件并添加新组件,但它不起作用,尽管我使用了removeAll()repait()、revalidate()等。下面是我的BankApp类代码: 这里是BankGUI: 下面是我的ButtonListener课程: 当我尝试这样做
问题内容: 我有一个 JFrame 。 我也有一个 Box 类,它扩展了 Component 。该box类具有一个 paint 方法,该方法可以创建一个填充的矩形。 当我将这些Box组件的多个添加到我的JFrame时,当我在JFrame上调用 重绘 时,仅显示最近添加的一个。 我看了一下布局管理器,但是我不确定那不是我想要的。我所希望的是能够在屏幕上的任何位置制作整个矩形的动画。 (我还尝试创建一