JRibbon - ResizableIcon



Because of resizing properties of JRibbon we unable to use our normal icons like ImageIcon, Icon, BufferedIcon…..
So JRibbon provide us ResizableIcon,  ResizableIcon having resizing properties according to resize component,  band , or any task in JRibbon.
Resizable Icon gets From Following Method, 

public static ResizableIcon getResizableIconFromResource(URL resource) {
   return ImageWrapperResizableIcon.getIcon(resource, new Dimension(18, 18));
    }

For that we need to pass an URL of an Image File.

No comments:

Post a Comment