我想更改此JTextField的格式,尤其是字体大小和颜色。
这是代码:
JTextField textField = new JTextField(10);
JTextArea msgArea = new JTextArea(10, 30);
答案 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);