我正在尝试做的是使JTextPane占用JPanel中尽可能多的空间。
对于我的UpdateInfoPanel,我正在使用:

public class UpdateInfoPanel extends JPanel {
private static final long serialVersionUID = 257125249175323679L;

private JTextPane textPane;

public UpdateInfoPanel(){
    textPane = new JTextPane();
    textPane.setBackground(Color.DARK_GRAY);
    textPane.setEditable(false);
    textPane.setMargin(null);
    textPane.setContentType("text/html");
    textPane.setText("<html><body style=\"font: Arial; color: white; padding: 5px; padding-top: 0;\"><h1 style=\"padding-top: 0;\">News</h1></body></html>");
    JScrollPane scrollPane = new JScrollPane(textPane);
    add(scrollPane);
    setBackground(Color.DARK_GRAY);
    textPane.setBorder(BorderFactory.createLineBorder(Color.BLACK));
}
}

对于我的框架,我只需创建一个实例并将其放在BorderLayout.CENTER中。
当前是这样。白色边框是滚动窗格,黑色是文本窗格。 我想做的是使边框位于面板的边缘。
![] [1]

最佳答案

您正在设置面板的布局吗?

    setLayout(new BorderLayout());
    add(scrollPane,BorderLayout.CENTER);

如果您不需要textpane的边框,请textPane.setBorder(null);不要扩展JPanel。您可以像创建JTextPane一样进行创建。

09-26 06:26