2

我想更改此 JTextField 的格式,尤其是字体大小和颜色。

这是代码:

JTextField textField = new JTextField(10);
JTextArea msgArea = new JTextArea(10, 30);
4

1 回答 1

3

您可以通过设置颜色来更改Font颜色。

Font f = new Font("Arial", Font.BOLD, 15);

textField.setFont(f);
textField.setForeground(Color.RED);

msgArea.setFont(f);
msgArea.setForeground(Color.BLUE);
于 2013-06-09T10:07:44.683 回答