Tagged Questions

2
votes
1answer
143 views

Grab focus to a JPanel in a JLayeredPane

I have a JLayeredPane with 2 layers the first layer is a JPanel Wrapping an Image. the second layer is another object which extends JPanel called ResizableRectangle and implements KeyListener. I've ...
1
vote
3answers
475 views

Java Swing: Clearing custom painting from a JPanel overlayed with other JPanels in a JLayeredPane

I've got a JLayeredPane containing three JPanels, two of which overlap, that I'm painting shapes to. One of the two JPanels that overlap needs to have every shape drawn to it cleared without ...
1
vote
2answers
3k views

adding JLayeredPane to JPanel

I am trying to add a JLayeredPane to a JPanel and then add an image (JLabel icon) and a button to the JLayeredPane, but neither show up. I've tested the image without the button and the layeredpane ...
0
votes
2answers
151 views

Dynamic GUI size

I have this problem with resizing some JPanels in a GUI application. The application has a main JLayeredPane which contains 2 other JPanels. In JPanel 1 I have a login form and a button. When I press ...