Eclipse View scrollen!

BtheBeast

Mitglied
He Leute,
wie im Titel schon gesagt, ich habe eine Eclispe View und will das diese Scrollbar wird. Leider funktioniert das nicht mit SWT.H_SCROLL u.s.w
Die View an sich is sehr simple:
public void createPartControl(Composite parent) {
label = new Label(parent, 0);
label.setImage(i);

}

kann jemand helfen? Danke schonmal.

Gruß B
 
hi, probier es mal so...
Code:
public void createPartControl(Composite parent) {
  ScrolledComposite scomp = new ScrolledComposite(parent, SWT.V_SCROLL);
  Composite child = new Composite(scomp, SWT.NONE);

  label = new Label(child, 0);
  label.setImage(i);

  scomp.setContent(child);
  scomp.setMinSize(595, 700);
  scomp.setExpandVertical(true);
  scomp.setExpandHorizontal(true);
}
 
Zurück