1:設置字段
Font fon =new Font("宋體", Font.BOLD, 20);
2:創建一個標簽
JLabel labone= new JLabel("操作指南");
3:設置它的字體
labone.setFont(fon);
4:設置標簽的大小
labone.setBounds(0,0,200,60);
5:設置標簽字體的顏色
labone.setForeground(Color.red);
6:設置標准的ICON
ImageIcon image = new ImageIcon("images\\sok0.png");
labone.setIcon(image);
//設置字體的水平方向 與設置內容的垂直方向
labtwo.setHorizontalAlignment(SwingConstants.LEFT);
labtwo.setVerticalTextPosition(SwingConstants.BOTTOM);
