gpt4 book ai didi

java - 如何在GUI中创建多个框架或窗口?

转载 作者:太空宇宙 更新时间:2023-11-04 09:29:33 25 4
gpt4 key购买 nike

我是创建 GUI 的新手。我想知道如何创建多个窗口。如果要单击按钮,我想显示另一个框架。我已经搜索过如何进行,我看到有些人正在制作另一个 GUI 表单,并且只是在单击按钮时调用另一个表单,但我不明白如何进行。 enter image description here

最佳答案

有很多方法可以做到这一点。主要方法之一是创建一个具有自己属性的新 Java 类。这是一个例子:

JButton button = new JButton("Button_Leads_To_This_Window");
button.addActionListener( new ActionActionListener()
{
public void actionPerformed(ActionEvent e)
{
NewFrame();
}
});

这将允许按钮调用一个新窗口,类似于您调用“我的帝国”窗口的方式。例如 NewFrame() 类将如下所示:

public static void newFrame()
{
EventQueue.invokeLater(new Runnable()
{
@Override
public void run()
{
JFrame frame = new JFrame("Test");
frame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
try
{
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
} catch (Exception e) {
e.printStackTrace();
}
JPanel panel = new JPanel();
panel.setLayout(new BoxLayout(panel, BoxLayout.Y_AXIS));
panel.setOpaque(true);
JTextArea textArea = new JTextArea(15, 50);
textArea.setWrapStyleWord(true);
textArea.setEditable(false);
textArea.setFont(Font.getFont(Font.SANS_SERIF));
JScrollPane scroller = new JScrollPane(textArea);
scroller.setVerticalScrollBarPolicy(ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS);
scroller.setHorizontalScrollBarPolicy(ScrollPaneConstants.HORIZONTAL_SCROLLBAR_NEVER);
JPanel inputpanel = new JPanel();
inputpanel.setLayout(new FlowLayout());
JTextField input = new JTextField(20);
JButton button = new JButton("Enter");
DefaultCaret caret = (DefaultCaret) textArea.getCaret();
caret.setUpdatePolicy(DefaultCaret.ALWAYS_UPDATE);
panel.add(scroller);
inputpanel.add(input);
inputpanel.add(button);
panel.add(inputpanel);
frame.getContentPane().add(BorderLayout.CENTER, panel);
frame.pack();
frame.setLocationByPlatform(true);
frame.setVisible(true);
frame.setResizable(false);
input.requestFocus();
}
});
}

以下是有关此事的更多信息:

https://www.thoughtco.com/create-a-simple-window-using-jframe-2034069

https://www.youtube.com/watch?v=RMz9LYY2g4A

祝你好运。

关于java - 如何在GUI中创建多个框架或窗口?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57259341/

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