How to add Icons to Title bar?

263 Views Asked by At

How do I add custom Icons to the Title bar as this person did?

Jframe Title Icons

1

There are 1 best solutions below

0
Arham Gillani On

The following code snippet displays an icon in the title bar:

JFrame frame = new JFrame("Frame Icons");
frame.setIconImages(icons);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setLocationByPlatform(true);
frame.setSize(200,100);
frame.setVisible(true);