java - JOptionPane.showConfirmDialog blocks the background windows -
joptionpane.showconfirmdialog popup (y/n dialogues) blocks accessing other windows of same application. (needless mention know nature of dialogue bock other windows, dont want app). in application open several jframes in each image loaded. @ end ask user whether he/she wants images saved or not. user has no access go , @ windows joptionpane.showconfirmdialog not allow it. how can set joptionpane.showconfirmdialog still have access underneath windows?
the joptionpane dialogs "modal" means intentionally block other windows, forcing user make decision before continuing.
try jdialog instead , setmodal() false.
Comments
Post a Comment