我正在使用NetBeans。我关闭了JTable
列的自动调整大小。现在它与滚动窗格的左侧对齐。我怎样才能让它居中?
答案 0 :(得分:1)
找到解决方案。必须添加一个额外的面板。
public class GUI {
public static void main(String[] args) {
JFrame frame = new JFrame();
frame.setSize(500, 400);
JButton button = new JButton("Click me");
button.setPreferredSize(new Dimension(200, 40));
JPanel panel = new JPanel();
panel.add(button);
JScrollPane scrollableArea = new JScrollPane(panel);
frame.add(scrollableArea);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setVisible(true);
}
}
真的是一个伟大而意想不到的解决方案。有时java真的很奇怪。这是原始帖子http://www.velocityreviews.com/forums/t600361-jscrollpane.html