這裏是我的代碼,我想居中的JTextPane在JScrollPane的:如何將組件集中到JScrollPane中?
JFrame frame = new JFrame("Example");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
final JTextPane editor = new JTextPane();
editor.setEditorKit(this);
JScrollPane scroll = new JScrollPane(editor);
//scroll.setAlignmentX(JScrollPane.CENTER_ALIGNMENT); <<<didnt change anything, so //'ed it
frame.getContentPane().add(scroll);
frame.setBounds(GraphicsEnvironment.getLocalGraphicsEnvironment().getMaximumWindowBounds());
你是什麼意思'在JScrollPane中居中一個組件?在您的示例中,'JScrollPane'被拉伸以填充'JFrame'的contentPane,'JTextPane'被拉伸以填充'JScrollPane'。我不明白這方面的「中心」是什麼意思。 – Xeon 2012-07-31 13:10:12