PessoALL,
Alguem sabe como colocar scroll bar em um StyledText no SWT??
[]'s
PessoALL,
Alguem sabe como colocar scroll bar em um StyledText no SWT??
[]'s
PessoALL,
Nosso amigo google não postou msg aqui, mas ja me ajudou :D
Para quem interessar segue a solução.
public static void main(String[] args) {
Display display = new Display ();
Shell shell = new Shell (display);
shell.setLayout(new FillLayout());
StyledText b1 = new StyledText(shell, SWT.BORDER | SWT.MULTI | SWT.V_SCROLL | SWT.H_SCROLL);;
shell.open ();
while (!shell.isDisposed ()) {
if (!display.readAndDispatch ()) display.sleep ();
}
display.dispose ();
}
[]'s