javaswingjframeawtwindowlistener

How to detect JFrame window minimize and maximize events?


Is there a way to an event listener to a JFrame object to detect when the user clicks the window maximize or minimize buttons?

Am using the JFrame object as follows:

JFrame frame = new JFrame("Frame");


Solution

  • You can use WindowStateListener. How to Write Window Listeners tutorial demonstrates how to create window-related event handlers.