首页上一页 1 下一页尾页 1 条记录 1/1页
java 从入门到精通(第3版)第230页图标的使用
发表在Java答疑区
2017-03-29
是否精华
是
否
版块置顶:
是
否
老师好,230页中的例13.3中paintIcon()方法,在main()中哪里调用了?
public static void main(String[] args) {
DrawIcon icon = new DrawIcon(15, 15);
// 创建一个标签,并设置标签上的文字在标签正中间
JLabel j = new JLabel("测试", icon, SwingConstants.CENTER);
JFrame jf = new JFrame(); // 创建一个JFrame窗口
Container c = jf.getContentPane();
c.add(j);
jf.setSize(100,100);
jf.setVisible(true);
jf.setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE);
}
main()方法中没有看到调用paintIcon()的地方啊