RCP的外观 (标签改成波浪形)

RCP的外观 (标签改成波浪形)
  可以把视图的标签改成波浪形,通过配置文件的方式来更改产品的样式。
plugin.xml 中对 org.eclipse.core.runtime.products 扩展点的属性进行更改,如下:

  <extension
           id="product"
           point="org.eclipse.core.runtime.products">
        <product
              application="cn.blogjava.youxia.rcp_start.application"
              name="
RCPDemo">
           <property
                 name="preferenceCustomization"
                 value="plugin_customization.ini"/>
         </product>
   </extension>

 

添加了一个prefereneCustomization属性,该属性的值为plugin_customization.ini文件(项目根目录下),在该文件中,我们可以配置我们的样式。在这里,它的内容如下:

1 org.eclipse.ui/SHOW_TRADITIONAL_STYLE_TABS=false
2 org.eclipse.ui/DOCK_PERSPECTIVE_BAR=topRight


在这个文件中可以定义的参数有很多,可以查看
Eclipse 的文档。

第2个方法: PlatformUI.getPreferenceStore().setDefault(IWorkbenchPreferenceConstants.SHOW_TRADITIONAL_STYLE_TABS,false); // 没试过

你可能感兴趣的:(RCP的外观 (标签改成波浪形))