我想更改此 JTextField 的格式,尤其是字体大小和颜色。
这是代码:
JTextField textField = new JTextField(10);
JTextArea msgArea = new JTextArea(10, 30);
我想更改此 JTextField 的格式,尤其是字体大小和颜色。
这是代码:
JTextField textField = new JTextField(10);
JTextArea msgArea = new JTextArea(10, 30);
您可以通过设置颜色来更改Font
颜色。
Font f = new Font("Arial", Font.BOLD, 15);
textField.setFont(f);
textField.setForeground(Color.RED);
msgArea.setFont(f);
msgArea.setForeground(Color.BLUE);