如何在Eclipse RCP浏览器中设置导航和滚动条?

时间:2017-03-23 10:38:31

标签: eclipse javafx eclipse-plugin eclipse-rcp rcp

我正在使用eclipse rcp并将html内容加载到浏览器中我想设置滚动条,导航按钮就像上一个,下一个和拆分浏览器内容上的perticuarl事件

public class CliskDisplay {

@PostConstruct
public static void createControls(Composite parent) throws InvalidPropertiesFormatException, IOException {
    final Browser browser = new Browser(parent, SWT.NONE);
    String fullHtml = DeviceListPart.html;
    String[] parts = fullHtml.split("#");
    String part1 = parts[0]; // 004
    String part2 = parts[1];
    String mysz2 = part1.replaceAll("\\s", "");
    String input_file = "D:/ePubWork/zip/OEBPS/" + mysz2;
    browser.setUrl(input_file);
}

以下代码将使我能够阅读epub unzip html内容文件。

<ion-item [navPush]="addon.settingsLandingClss">
    {{ addon.name }}
    <ion-icon name="arrow-forward" item-right></ion-icon>
</ion-item>

}

0 个答案:

没有答案