我正在开发一个插件项目,我们正在使用不同FormEditor
的SWT FormPage
。第一个FormPage选项卡将充当摘要页面,从中我们需要导航到不同的其他FormPage。我确实搜索过,但没有有用的资源,所以请指导我如何在SWT FormEditor的不同表单页面之间切换。期待您的快速反应和感谢。
答案 0 :(得分:2)
注意:FormEditor
和FormPage
是Eclipse Forms而不是SWT。
FormEditor
有多种setActivePage
方法可供您调用:
public IFormPage setActivePage(String pageId)
使用唯一页面标识符设置活动页面。
public IFormPage setActivePage(String pageId, Object pageInput)
使用唯一页面标识符设置活动页面并设置它 输入到提供的对象。
protected void setActivePage(int pageIndex)
设置当前活动的页面。