图标Icon(Icon)
Posted 逆骨111
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了图标Icon(Icon)相关的知识,希望对你有一定的参考价值。
package cn.rushangw.lesson04;
import javax.swing.*;
import java.awt.*;
//图标是一个接口 需要实现接口 图标写在窗口里 所以需要继承Frame
public class IconDemo extends JFrame implements Icon {
private int width;
private int height;
public IconDemo(){}
public IconDemo(int width, int height) {
this.width = width;
this.height = height;
}
public void init(){
IconDemo iconDemo = new IconDemo(15, 15);
JLabel jLabel = new JLabel("icontest", iconDemo, SwingConstants.CENTER);
Container container = getContentPane();
container.add(jLabel);
setVisible(true);
setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
}
public static void main(String[] args) {
new IconDemo().init();
}
@Override
public void paintIcon(Component c, Graphics g, int x, int y) {
g.fillOval(x,y,width,height);
}
@Override
public int getIconWidth() {
return this.width;
}
@Override
public int getIconHeight() {
return this.height;
}
}
以上是关于图标Icon(Icon)的主要内容,如果未能解决你的问题,请参考以下文章