JLabel标签:
Label label=new Label("陈同学");
label.setBounds(100, 100, 100, 150);
Color color = new Color(118,120,78);//它的取值在0~255
label.setForeground(color);//这个是字体颜色
label.setBackground(Color.green);//背景颜色
label.setFont(new Font("宋体",Font.BOLD,30));
this.add(label);
JButton按钮:
JButton button = new JButton("陈同学");
button.setBounds(100, 100, 100, 70);
Color color = new Color(110,130,200);
Font font = new Font("华文行楷",Font.BOLD,20);
button.setForeground(color);//设置字体颜色
button.setBackground(Color.green);//设置背景颜色
button.setFont(font);//设置字体大小
this.add(button);