ImageIcon programIcon = new ImageIcon("/images/icon.png");
userRatingsPanel.setIconImage(programIcon.getImage());
That's my current code (and jframe too obv)
I'm trying to change the default icon
thanks!
ImageIcon programIcon = new ImageIcon("/images/icon.png");
userRatingsPanel.setIconImage(programIcon.getImage());
That's my current code (and jframe too obv)
I'm trying to change the default icon
thanks!
You Can change your Icon
setIconImage(Toolkit.getDefaultToolkit().getImage(YourFrame.class.getResource("Your Source")));