如何在Swt组合框中设置默认值?

时间:2017-07-26 11:51:01

标签: java swt

我有一个组合框,它将处于只读模式。我想为该组合框设置一个默认值,表示组合框的用途(例如:一个位置组合,默认文本为“位置”,其中包含其他项目的数量,如美国,印度,英格兰等组合框)。 注意:默认值不应该是组合框中的项目之一。 我知道如果组合框处于只读模式是不可能的。 如果有任何可行的解决方法,请告诉我。

如下图所示,有一个组合框,其中包含不同的变体,如A,B,C,D等,但组合框的默认标签为“Variante”。

enter image description here

1 个答案:

答案 0 :(得分:3)

这可以使用CCombo来实现。如果您使用setItems(String[])之前的使用setText(String)设置组合中的项目,您将在组合中看到一个默认值,该默认值不是列表中的项目之一

请注意,当您致电getSelectionIndex()时,返回的值将为-1,因为尚未选择任何项目,并且一旦选择了某个项目,默认值将不再存在。

public class CComboDefaultTextTest {

    public static void main(final String[] args) {
        final Display display = new Display();
        final Shell shell = new Shell(display);
        shell.setLayout(new GridLayout());

        final Composite baseComposite = new Composite(shell, SWT.NONE);
        baseComposite
                .setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true));
        baseComposite.setLayout(new GridLayout());

        final CCombo combo = new CCombo(baseComposite, SWT.READ_ONLY
                | SWT.BORDER);
        combo.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, false));
        // Be sure to do this before calling setText()
        combo.setItems(new String[] { "item 1", "item 2", "item 3" });
        combo.setText("Default");

        System.out.println(combo.getSelectionIndex());

        shell.pack();
        shell.open();
        while (!shell.isDisposed()) {
            if (!display.readAndDispatch()) {
                display.sleep();
            }
        }
        display.dispose();
    }

}

结果:

enter image description here