eclipse kepler (RCP および RAP 開発者向けの Eclipse) を使用して rcp 製品を開発しましたが、タブ スタイルの設定が機能しません。私は2つの方法を試しました
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>