I am making a project based on Java swing as it is a GUI based project. I need to be able to change Font of my Entire project with another GUI Frame.
Like If I made a GUI to select any font from the JCombobox
with a Submit button
Then after selecting a font for eg. Arial all the Frames fonts containing JLabel
&JTextfield
& every other swing component
Should change its font to Arial
I searched over the Internet but was not able to find anything specific I found a bit about
Config File For Java
I also have searched for PropertyChangeListener but it kind of did not work for me to change the fonts of all my frames as it was complicated.
Could anyone help me solve my problem