更改JTextField格式

时间:2013-06-09 10:04:40

标签: java swing fonts jtextfield jtextarea

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

这是代码:

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

1 个答案:

答案 0 :(得分:3)

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

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

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

msgArea.setFont(f);
msgArea.setForeground(Color.BLUE);