我ni笑,想知道如何把它trap陷?
frame.addWindowStateListener(new WindowStateListener(){
public void windowStateChanged(WindowEvent e) {
System.out.println(e.getNewState());//I need to trap this state when it prints 7
}
});
When the instance of frame is visible then after maximizing
and then clicking on minimize
button it prints 7
(the state of window). I need to trap that state. Can any body tell me how to do so?
I already know that the e.getNewState()
will return 7
but I want the name of this state.