6

如何启用滚动条以显示在 custom.StyledText 上?它显示滚动条但不允许 custom.StyledText 滚动?

package app;

import org.eclipse.swt.SWT;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.swt.widgets.Label;
import org.eclipse.swt.widgets.Text;
import org.eclipse.swt.widgets.Button;
import org.eclipse.swt.events.SelectionAdapter;
import org.eclipse.swt.events.SelectionEvent;
import org.eclipse.swt.events.MouseAdapter;
import org.eclipse.swt.events.MouseEvent;



import org.eclipse.swt.custom.StyledText;
import org.eclipse.swt.custom.ScrolledComposite;
public class myapp {

protected Shell shlWhois;
private Text text;

/**
 * Launch the application.
 * @param args
 */
public static void main(String[] args) {
    try {
        myapp window = new myapp();
        window.open();
    } catch (Exception e) {
        e.printStackTrace();
    }
}

/**
 * Open the window.
 */
public void open() {
    Display display = Display.getDefault();
    createContents();
    shlWhois.open();
    shlWhois.layout();
    while (!shlWhois.isDisposed()) {
        if (!display.readAndDispatch()) {
            display.sleep();
        }
    }
}

/**
 * Create contents of the window.
 */
protected void createContents() {
    shlWhois = new Shell();
    shlWhois.setSize(450, 300);
    shlWhois.setText("Whois");

    Label lblDomain = new Label(shlWhois, SWT.NONE);
    lblDomain.setBounds(10, 10, 55, 15);
    lblDomain.setText("Domain");

    text = new Text(shlWhois, SWT.BORDER);

    text.setBounds(72, 4, 260, 21);

    final ScrolledComposite scrolledComposite_1 = new ScrolledComposite(shlWhois, SWT.BORDER | SWT.H_SCROLL | SWT.V_SCROLL);
    scrolledComposite_1.setAlwaysShowScrollBars(true);
    final Composite c = new Composite(scrolledComposite_1, SWT.NONE);
    scrolledComposite_1.setMinHeight(1000);
    scrolledComposite_1.setExpandVertical(true);
    scrolledComposite_1.setExpandHorizontal(true);
    scrolledComposite_1.setBounds(10, 31, 403, 221);

    final StyledText styledText = new StyledText(scrolledComposite_1, SWT.BORDER | SWT.WRAP);

    scrolledComposite_1.setContent(styledText);
    scrolledComposite_1.setMinSize(styledText.computeSize(SWT.DEFAULT, SWT.DEFAULT));

    Button btnWhois = new Button(shlWhois, SWT.NONE);
    btnWhois.addMouseListener(new MouseAdapter() {
        @Override
        public void mouseDown(MouseEvent arg0) {



        }
    });
    btnWhois.addSelectionListener(new SelectionAdapter() {
        @Override
        public void widgetSelected(SelectionEvent arg0) {
        }
    });
    btnWhois.setBounds(338, 2, 75, 25);
    btnWhois.setText("Search");



}
}
4

1 回答 1

11

您不需要ScrolledComposite, 在 . 上使用SWT.V_SCROLL样式StyledText。这是一个示例,使用布局而不是setBounds

/**
 * Create contents of the window.
 */
protected void createContents() {
    shlWhois = new Shell();
    shlWhois.setSize(450, 300);
    shlWhois.setText("Whois");
    shlWhois.setLayout(new GridLayout(2, false));

    Label lblDomain = new Label(shlWhois, SWT.NONE);
    lblDomain.setLayoutData(GridDataFactory.fillDefaults().create());
    lblDomain.setText("Domain");

    text = new Text(shlWhois, SWT.BORDER);
    text.setLayoutData(GridDataFactory.fillDefaults().grab(true, false).create());

    final StyledText styledText = new StyledText(shlWhois, SWT.BORDER | SWT.V_SCROLL | SWT.MULTI | SWT.WRAP);
    styledText.setLayoutData(GridDataFactory.fillDefaults().grab(true, true).span(2, 1).create());

    Button btnWhois = new Button(shlWhois, SWT.NONE);
    btnWhois.setText("Search");
}

SWT.BORDER | SWT.V_SCROLL | SWT.H_SCROLL | SWT.MULTI如果您还需要水平滚动条,则可以使用这些样式。

于 2012-04-13T18:19:44.880 回答