JLabel 类中方法
时间: 2024-01-10 14:02:22 浏览: 66
浅谈标签和JLabel类构造方法 <font color=red>原创</font>
JLabel 类中常用的方法有:
1. setText(String text):设置标签显示的文本内容。
2. setIcon(Icon icon):设置标签显示的图标。
3. setHorizontalAlignment(int alignment):设置标签中文本的水平对齐方式。
4. setVerticalAlignment(int alignment):设置标签中文本的垂直对齐方式。
5. setFont(Font font):设置标签中文本的字体。
6. setForeground(Color fg):设置标签中文本的前景色。
7. setBackground(Color bg):设置标签的背景色。
8. setOpaque(boolean isOpaque):设置标签是否为不透明。
9. setEnabled(boolean enabled):设置标签是否可用。
10. setToolTipText(String text):设置标签的鼠标悬停提示文本。
阅读全文