Removing the Focus from the Application : Focus Event « Event « Java
- Java
- Event
- Focus Event
Removing the Focus from the Application
import java.awt.KeyboardFocusManager;
public class Main {
public static void main(String[] argv) throws Exception {
KeyboardFocusManager.getCurrentKeyboardFocusManager().clearGlobalFocusOwner();
}
}
Related examples in the same category