我正在使用jre6在我的RCP应用程序中使用SWT_AWT桥,它工作得很好。设置代码取自Eclipse Corner Article:
Composite composite = new Composite(parent, SWT.EMBEDDED | SWT.NO_BACKGROUND);
Frame frame = SWT_AWT.new_Frame(composite);
JApplet applet = new JApplet();
frame.add(applet);
return applet;
现在,当我切换到jre7时,包含网桥的视图部分不再通过鼠标事件激活。
问题至少出现在Win7上,我还没有尝试过其他操作系统。
有什么想法吗?