826220679@qq.com
2023-07-22 674747e1ccde2707bf4d4c02d52b7ef5af5a97dc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package publicclass;
import java.awt.Color;
import java.awt.Font;
import javax.swing.JLabel;
 
/**ÕâÊÇÒ»¸ö¹«¹²µÄJLable*/
public class JlableModel extends JLabel {
    /**
     * 
     */
    private static final long serialVersionUID = 1L;
    Font f=new Font("΢ÈíÑźÚ",Font.PLAIN,15);//°´Å¥×ÖÌåÉèÖÃ
    String text;
    public JlableModel(String text) {
        this.setText(text);
        this.setFont(f);
        this.setForeground(Color.black);//ÉèÖÃ×ÖÌåÑÕÉ«
    }
 
    public JlableModel() {    
        this.setFont(f);
        this.setForeground(Color.black);//ÉèÖÃ×ÖÌåÑÕɫΪ°×É«
    }
 
}