java中Label怎么设置Label中需要显示的字体?
发布网友
发布时间:2022-05-11 05:09
我来回答
共2个回答
热心网友
时间:2024-02-09 15:13
ublic class SetColor extends JFrame{
JLabel jlabel = new JLabel("颜色,大小");
public SetColor(){
this.setLayout(null);
jlabel.setBounds(0, 0, 200, 40);
jlabel.setFont(new Font("",1,30));//字体大小
jlabel.setForeground(Color.BLUE);//字体颜色
this.add(jlabel);
this.setSize(200,200);
this.setVisible(true);
}
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
SetColor sc = new SetColor();
}}
热心网友
时间:2024-02-09 15:13
楼上正解!jlabel.setFont(new Font("",1,30));//字体大小
jlabel.setForeground(Color.BLUE);//字体颜色