Java中 Label控件的使用


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

 

 

 

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM