1

是否存在与不属于 Forms API的ScrolledPageBook具有相同行为的本机 SWT 或 RCP 组件?

我需要动态更改视图的内容。例如,我想做类似的事情:

Composite content1;
Composite content2;
Composite content3;    
myView.showContent(content1); // Draw the content1 into the view client area
myView.showContent(content2); // Draw the content1 with content2
myView.showContent(content3); // Draw the content2 with content3

非常感谢提前!

4

1 回答 1

0

TabFolder如果您只寻找本机 SWT 小部件,我会想到。

RCP: org.eclipse.ui.part.PageBook

于 2012-11-07T13:06:43.323 回答