Tagged Questions
0
votes
2answers
710 views
How do I Hook a JPanel into parent/ancestor Container's windowClosing/Closed listener?
I want to create a 'generic' JPanel which can be rendered in any of the higher level Window classes (JFrame, JDialog, or JInternalFrame to be somewhat precise.)
I want to be able to 'clean up' some ...
0
votes
1answer
1k views
Java Swing: JInternalFrame: need a dialog popup
I have a JInternalFrame window that needs to popup a modal dialog box when a JButton is pressed. At first, I tried using JDialog, but I found that JDialog constructor needs:
JFrame
boolean modal
I ...