我正在尝试创建Eclipse 4.8应用程序,并使用扩展名org.eclipse.core.runtime.products
定义主题。
我希望将与org.eclipse.ui.theme_1.2.100
捆绑在一起的深色主题作为默认主题。
我在插件XML中看到了这一点:
<stylesheet
uri="css/dark/e4-dark_preferencestyle.css">
<themeid
refid="org.eclipse.e4.ui.css.theme.e4_dark"></themeid>
</stylesheet>
我正在这样指定我的产品:
<plugin>
<extension id="ide" point="org.eclipse.core.runtime.products">
<product application="org.eclipse.ui.ide.workbench" name="%productName" description="%productName">
<property name="introTitle" value="%introTitle" />
<property name="applicationCSSResources" value="platform:/plugin/org.eclipse.platform/images/" />
<property name="applicationXMI" value="org.eclipse.platform/LegacyIDE.e4xmi" />
<property name="cssTheme" value="org.eclipse.e4.ui.css.theme.e4_dark" />
<property name="preferenceCustomization" value="plugin_customization.ini" />
</product>
</extension>
</plugin>
但是当我构建并启动该应用程序时,它似乎仍然是默认的灯光主题。我是否正确定义了CSS?