我想在按 Alt + TAB 键时关闭Shell。 我在Windows 64 Bit OS中使用SWT。我已经制作了一个程序来解决这个问题,但是在按下这些键的时候没有检测到事件。我在下面分享了我尝试过的代码。
Class childClass = Child.class;
String motherClassName = childClass.getCanonicalName().subSequence(0, childClass.getCanonicalName().length() - childClass.getSimpleName().length() - 1).toString();
Class motherClassType = Class.forName(motherClassName) ;
Mother mother = motherClassType.newInstance()
Child child = childClass.getConstructor(new Class[]{motherClassType}).newInstance(new Object[]{mother});