I'm using java and window builder I have a 4x4 grid on my jframe made out of jlabels. I can press a button and it displays an image (red.png) at a random grid point.
How can I make it so that
I'm using java and window builder I have a 4x4 grid on my jframe made out of jlabels. I can press a button and it displays an image (red.png) at a random grid point.
How can I make it so that
Copyright © 2021 Jogjafile Inc.
The image will likely be displayed as an ImageIcon.
setIcon(null)
setIcon(redDiskIcon)
.Note that most of this is unnecessary:
Just use a for loop to create your JLabels and add them to the grid JPanel and to your JLabel array. No need for variables a, b, c, d,... and in fact many reasons not to have these variables.