如何将处理过的工具项置于右侧

时间:2015-02-12 18:10:10

标签: java eclipse-rcp rcp e4

我有一个基于eclipse e4框架构建的应用程序。我想将Handled Tool Item放在最右端。我怎样才能实现它?

enter image description here

1 个答案:

答案 0 :(得分:2)

您需要使用两个工具栏'带有'工具控件的条目'它们之间: enter image description here

如下所示:

enter image description here

在工具控件的标签中添加单词stretch这将使修剪栏管理器拉伸控件以使用所有可用空间将其后的所有内容推到右侧: enter image description here

控件的类可以是简单的:

public class SpacerControl
{
  @PostConstruct
  public void postConstruct(Composite parent)
  {
    Composite body = new Composite(parent, SWT.NONE);

    body.setLayout(new GridLayout());
  }
}