我使用 eclipse kepler(用于 RCP 和 RAP 开发人员的 Eclipse)开发了一个 rcp 产品,但设置选项卡样式不起作用。我尝试了两种方法
1.config.xml
<extension id="product" point="org.eclipse.core.runtime.products">
<product application="cn.desktoptool.application" name="cn.test">
<property name="preferenceCustomization" value="plugin_customization.ini"/>
</product>
和 plugin_customization.ini 文件
org.eclipse.ui/SHOW_TRADITIONAL_STYLE_TABS=false
2.在ApplicationWorkbenchAdvisor类中添加代码
PlatformUI.getPreferenceStore().setValue( IWorkbenchPreferenceConstants.SHOW_TRADITIONAL_STYLE_TABS, false);
但是不行,有什么问题?</p>