この 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);