是否存在与不属于 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
非常感谢提前!