0

我需要使用我的新插件点击我的自定义菜单项条目来打开一个属性页面。我需要添加到我的 plugins.xml 中的所有内容

此 plugin.xml 不会产生所需的结果。

<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.2"?>
<plugin>
<extension
     point="org.eclipse.ui.propertyPages">
   <page
        class="com.abc.gis.map.displayscale.DisplayPropertiesSummary"
        id="com.abc.gis.map.displayScale.page3"
        name="Test"
        objectClass="net.refractions.udig.project.IMap">
  </page>
  </extension>

   <extension
          point="org.eclipse.ui.handlers">
    <handler
          class="com.abc.gis.map.displayscale.DisplayPropertiesCommandHandler"
          commandId="com.abc.gis.map.displayscale.displayProperties">
       <enabledWhen>
          <iterate
                ifEmpty="false"
                operator="or">
             <adapt
                   type="net.refractions.udig.project.IMap">
             </adapt>
             <instanceof
                   value="net.refractions.udig.project.IMap">
             </instanceof>
          </iterate>
       </enabledWhen>
    </handler>
    </extension>

 </plugin>

我正在尝试打开一个简单的属性页面,其中将包含我的用户输入工具,例如此属性页面中的单选按钮。单击我的自定义菜单项将打开此属性页面。

自定义菜单项

4

1 回答 1

1

您可以使用 的createPropertyDialogOn方法org.eclipse.ui.dialogs.PreferencesUtil来显示特定的属性页。就像是:

PreferencesUtil.createPropertyDialogOn(getShell(), obj, id, new String[] {id}, input).open()
于 2013-09-17T11:57:10.393 回答