当前位置: 代码迷 >> J2SE >> 重写BasicButtonUI类的paint方法,不能设置图标,该怎么处理
  详细解决方案

重写BasicButtonUI类的paint方法,不能设置图标,该怎么处理

热度:116   发布时间:2016-04-24 02:16:41.0
重写BasicButtonUI类的paint方法,不能设置图标
如题请问是否是要重写paintIcon方法?又怎么写.谢谢。

------解决方案--------------------
就在 paint方法里调用 icon的paintIcon方法。
------解决方案--------------------
Java code
        if(b.getIcon() != null) {            paintIcon(g,c,iconRect);        }
  相关解决方案