1

我正在用java创建一个GUI。目前我有一个空的 JFrame 并正在尝试向它添加一个 JPanel。JPanel 包含按钮、文本等。但是这些都没有显示。我的代码如下:

import java.awt.*;
import java.awt.event.*;

import javax.swing.*;


public class memoDisplayUI { 


JFrame frame = new JFrame();
JPanel panel = new JPanel();
JTextArea jTextBox = new JTextArea();
JScrollPane scroll = new JScrollPane();

/**
 * Launch the application.
 */
public static void main(String[] args) {
    EventQueue.invokeLater(new Runnable() {
        public void run() {
            try {
                memoDisplayUI frame = new memoDisplayUI();
                frame.frame.setVisible(true);
            } catch (Exception e) {
                e.printStackTrace();
            }
        }
    });
}

/**
 * Create the application.
 */
public memoDisplayUI() {
    initialize();
}

/**
 * Initialize the contents of the frame.
 */
private void initialize() {
    
    frame.getContentPane().setBackground(new Color(255, 255, 255));
    frame.getContentPane().setLayout(null);
    frame.setBounds(100, 100, 270, 400);
    frame.setUndecorated(true); //REMOVES MENU BAR
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    
    JLabel lblMemos = new JLabel("MEMOS");
    lblMemos.setForeground(new Color(100, 149, 237));
    lblMemos.setFont(new Font("Moire", Font.BOLD, 30));
    lblMemos.setBounds(16, 16, 234, 37);
    panel.add(lblMemos);
    
    JButton button = new JButton("");
    button.setBackground(new Color(100, 149, 237));
    button.setBounds(7, 350, 40, 40);
    panel.add(button);
    button.setIcon(new ImageIcon("back.png"));
    
    JButton button_1 = new JButton("");
    button_1.setBackground(new Color(100, 149, 237));
    button_1.setBounds(113, 350, 40, 40);
    panel.add(button_1);
    button_1.setIcon(new ImageIcon("Edit.png"));
    
    JButton button_2 = new JButton("");
    button_2.setBackground(new Color(100, 149, 237));
    button_2.setBounds(220, 350, 40, 40);
    panel.add(button_2);
    button_2.setIcon(new ImageIcon("memo.png"));
    
    JButton btnExit = new JButton("");
    btnExit.addActionListener(new ActionListener() {
        public void actionPerformed(ActionEvent arg0) {
            System.exit(0);
        }
    });
    btnExit.setBorder(null);
    btnExit.setIcon(new ImageIcon("Exit.jpg"));
    btnExit.setBounds(216, 19, 40, 40);
    panel.add(btnExit);
    
    jTextBox = new JTextArea();
    scroll.setViewportView(jTextBox); // add scroll panel
    jTextBox.setTabSize(4);
    jTextBox.setLineWrap(true);
    jTextBox.setBackground(new Color(192, 192, 192));
    jTextBox.setBounds(8, 60, 255, 286);
    panel.add(jTextBox);
    
    frame.getContentPane().add(panel);
}
}

有人可以告知这是为什么吗?

非常感谢 :)

编辑

从对代码的一些调整来看,这似乎是所需的布局(在不可调整大小的 GUI 中)。

备忘录 GUI

4

6 回答 6

2

我认为您使用 null 来获得“将其放置在合适的位置”?然后使用 FlowLayout

frame.setLayout(new FlowLayout());

那应该解决它:)

于 2014-04-04T10:13:25.993 回答
2

有人可以告知这是为什么吗?

使用null布局而不是调用pack().

我在问题中编辑的图像是在我注释掉调用setUndecorated(true)并将其拖得更大之后作为 GUI 的屏幕截图获得的。这样做会导致 JRE 验证组件结构(pack()会做什么),从而使组件出现。


正如我在评论中提到的:

..更好的问题是“如何布局这个 GUI?” (只要您提供尝试)

这引出了我的第一条评论。(现在是更长的形式)

Java GUI 可能必须在多个平台、不同的屏幕分辨率和使用不同的 PLAF 上工作。因此,它们不利于组件的精确放置。要为强大的 GUI 组织组件,请改用布局管理器或它们的组合1,以及空白区域的布局填充和边框2




所以回到:

(只要您提供尝试)

查看这两个示例以了解它们是如何工作的,然后尝试结合一些布局和填充来创建一个框架,然后可以将其打包以减小到自然大小。

和一个小费JTextArea。建议在列 x 行中结合大小的Font大小。

于 2014-04-04T11:03:38.657 回答
1

只需从上面第 46 行的代码中删除/注释此行。

// frame.getContentPane().setLayout(null);

它应该工作正常..

于 2014-04-04T10:10:15.763 回答
1

代替

frame.getContentPane().setLayout(null);

frame.getContentPane().setLayout(new BorderLayout());

祝你好运。

编辑:为了将来参考,要决定LayoutManager在你的情况下应该使用哪个,你应该参考这个LayoutManagers 的视觉指南

于 2014-04-04T10:10:51.547 回答
1

1:你永远不应该调用 setLayout(null)。2:尝试 frame.validate() 使用您的布局来布局组件。

于 2014-04-04T10:15:33.897 回答
0

也许你应该更换:

frame.getContentPane().add(panel);

经过

frame.setContentPane(panel);

希望它有所帮助

于 2014-04-04T10:18:49.687 回答