展开全部
JTextArea txt = new JTextArea();
public JTextAreaFontandColor() {
setLayout(null);
txt.setBounds(3, 3, 300, 200);
add(txt);
Font font = new Font("Verdana", Font.BOLD, 12);
txt.setFont(font);
txt.setForeground(Color.BLUE);
txt.setText("\n \n JTextArea font & color change example");
}
public static void main(String[] args) {
JTextAreaFontandColor jtxt = new JTextAreaFontandColor();
jtxt.setSize(313,233);
jtxt.setTitle("JTextArea font & color settings");
jtxt.show();
}
}
更多追问追答
追问
txt.setBounds(3, 3, 300, 200); 是设置框框位置
jtxt.setSize(313,233); 是设置框框大小
文字大小设置在哪里
追答
Font font = new Font("Verdana", Font.BOLD, 12); font就是字体, 最后面的12就是字体
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询