Eclipse rcp 窗口激活

private static Shell windowShell;

    public static void active() {
        if (null != windowShell && !windowShell.isDisposed()) {
            if (!windowShell.getMinimized()) {
                windowShell.setMinimized(true);
            }
            windowShell.setMinimized(false);
            windowShell.forceActive();
            windowShell.forceFocus();
        }
    }

posted @ 2013-02-17 14:12    阅读(216)  评论(0编辑  收藏  举报