I have a frame that once it’s minimized, I’d like to minimize other frames related to it. If the frame is no longer minimized, I want to restore the other frames too. How should I go about doing this?
EDIT: nvm, it works.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
JInternalFrame.addInternalListener, and then catch in theinternalFrameDeiconifiedmethod.Then you can just call
JInternalFrame.setMaximum(true)on any of the others that are minimized.