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
よろしくお願いします!