Java SWT make a Label Scrollable -
i have label in group in swt , if contains many lines of text, make scrollable vertically. setting style parameter swt.v_scroll doesn't seem it. how can this?
label not support scrolling.
you use read text control scroll:
text text = new text(parent, swt.read_only | swt.v_scroll);
Comments
Post a Comment