I am trying to retrieve the minimize, maximize and close icons for the JFrame from the native look and feel.
I able to do this for the InternalFrame icons like so:
icon = UIManager.getIcon("InternalFrame.maximizeIcon");
However, I need the JFrame icons. I don't see any keys in the look and feel for JFrame icons. How do I access them?
thanks