gpt4 book ai didi

java - 如何在 SWT 中将文本设置为只读组合

转载 作者:行者123 更新时间:2023-11-30 02:04:16 24 4
gpt4 key购买 nike

通常,如果我想将文本设置为 Combo,我可以执行以下操作:combo.setText("text");如果我的组合是用 SWT.READ_ONLY 初始化的,那么这种方法似乎不起作用。

combo = new Combo(parent, SWT.READ_ONLY);

我需要一个具有固定值的组合。使用这些值之一作为默认值也很重要。可能吗?

最佳答案

我认为您可以提供一个固定的值数组,将它们设置为Combo中的项目,然后按索引选择其中一个。

在相关类中提供常量值数组:

private static final String[] YOUR_ENTRIES = { "Entry 1", "Entry 2", "Entry 3", "Entry 4" };

然后像这样初始化Combo:

// initialize it as read-only and drop-down
Combo readOnlyCombo = new Combo(parent, SWT.DROP_DOWN | SWT.READ_ONLY);
// set the item array as the item source
readOnlyCombo.setItems(YOUR_ENTRIES);
// set the desired index to be selected as the default selection (index 0 is the first item)
readOnlyCombo.select(0);

关于java - 如何在 SWT 中将文本设置为只读组合,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51821800/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com