码迷,mamicode.com
首页 > 其他好文 > 详细

e740. 向标签中加入一个图标

时间:2018-09-06 11:03:49      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:不可用   method   amp   pos   glin   within   code   按钮   lin   

This example creates a JLabel component with an icon.

    // Fetch icon
    Icon icon = new ImageIcon("icon.gif");
    
    // Create a label with text and an icon; the icon appears to the left of the text
    JLabel label = new JLabel("Text Label", icon, JLabel.CENTER);
    
    // Create a label with only an icon
    label = new JLabel(icon);

This example adds or replaces the icon in an existing JLabel component:

    // Add an icon to an existing label
    label.setIcon(icon);

The methods to control the position of the icon and text within a JLabel component are identical to those of a JButton. See also e747 在按钮上移动图标的位置, e748 在按钮上移动图标和标注的位置, e749 设置按钮上图标和标注的间隔, and e750 在按钮上加上不可用图标

e740. 向标签中加入一个图标

标签:不可用   method   amp   pos   glin   within   code   按钮   lin   

原文地址:https://www.cnblogs.com/borter/p/9596123.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!