- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何从 SWT 组合下拉列表中获取数据引用?目前我需要从组合框中获取文本,然后遍历我的数据对象,直到找到一个与组合框报告的文本相同的文本。
Combo combo = new Combo( new Shell(), SWT.READ_ONLY );
for (Person person : People.getPeople())
combo.add( person.getName() );
for (Person person : People.getPeople())
if (combo.getText().equals( person.getName() ))
System.out.println( "Person: " + person.getFullName() );
虽然这可行,但它容易出现各种错误,而且还占用大量 CPU,尤其是对于大型列表。我真的希望 Combo 的每个 Combo 项目都有“setData()”和“getData()”方法。
最佳答案
我创建了一个类,它允许一个对象与组合框“add()”相关联。此类将直接返回对象而不进行强制转换。我第一次尝试创建通用类 :-)
使用它的基本语法是(组合必须设置为 SWT.READ_ONLY):
Combo peopleBaseCombo = new Combo(shell, SWT.READ_ONLY);
ComboData<Person> peopleCombo = new ComboData<Person>(peopleBaseCombo);
for ( Person person : People.getPeople())
peopleCombo.addItem(person, person.getLastName);
...
Person person = peopleCombo.getCurrentItem();
类是:
import java.util.ArrayList;
import org.eclipse.swt.SWT;
import org.eclipse.swt.widgets.Combo;
/**
* A generic wrapper around a standard SWT {@link Combo} control.
* Allows for using arbitrary data objects associated with the displayed text.
* Assumes a {@link SWT#READ_ONLY} combo drop list<br><br>
* <blockquote>Combo peopleBaseCombo = new Combo(shell, SWT.READ_ONLY);<br>
* ComboData<Person> peopleCombo = new ComboData<Person>(peopleBaseCombo);<br><br>
* for ( Person person : People.getPeople())<br>
* peopleCombo.addItem(person, person.getLastName);<br>
* <br>
* ...<br>
* <br>
* Person person = peopleCombo.getCurrentItem();</blockquote>
*/
public class ComboData<T>
{
private ArrayList<ComboItem<T>> ivItemList;
private Combo ivCombo;
/**
* Create a ComboControl for the passed Combo control
* @param combo - SWT {@link Combo} control
*/
public ComboData( Combo combo )
{
super();
ivCombo = combo;
ivItemList = new ArrayList<>();
removeAll();
}
/**
* Adds an item to the controller along with the text you want shown in the Combo
* @param itemData - the data item of the defined type
* @param text - the text which will be shown in the Combo control
*/
public void addItem( T itemData, String text )
{
// these are added at the same time, and therefore have the same index location
ivItemList.add( new ComboItem<T>( itemData, text ) );
ivCombo.add( text );
}
/**
* Removes all the items in the list and Combo
*/
public void removeAll()
{
ivItemList.clear();
ivCombo.removeAll();
}
/**
* Returns the combo held by this control
*/
public Combo getCombo()
{
return ivCombo;
}
/**
* Set the current displayed item in the Combo using the associated data object
* @param setItemData - Sets the Combo display to the text associated with the setItemData
*/
public void setCurrentItem( T setItemData )
{
for (ComboItem<T> item : ivItemList)
if (item.getItemData().equals( setItemData ))
{
ivCombo.setText( item.getText() );
return;
}
if (ivItemList.size() > 0)
ivCombo.setText( ivItemList.get( 0 ).getText() );
}
/**
* Gets the currently chosen ComboItem associated with the Combo control displayed text
* @return the data item associated with the displayed text
*/
public T getCurrentItem()
{
ComboItem<T> currentItem;
try
{
currentItem = ivItemList.get( ivCombo.getSelectionIndex() );
}
catch (IndexOutOfBoundsException e)
{
try
{
currentItem = ivItemList.get( 0 );
}
catch (IndexOutOfBoundsException e1)
{
// will only happen if this method is called before there are any items in the list
return null;
}
}
return currentItem.getItemData();
}
@Override
public String toString()
{
StringBuilder info = new StringBuilder();
String className;
try
{
className = getCurrentItem().getClass().getName();
}
catch (NullPointerException e)
{
className = "";
}
info.append( "ComboControl (" );
info.append( className );
info.append( "):" );
for (ComboItem<T> item : ivItemList)
{
info.append( "\n " );
info.append( item.getInformation() );
}
return info.toString();
}
/**
* The item holding both the Combo control text, and its associated data
*/
private class ComboItem<I>
{
private String ivText;
private I ivItemData;
/**
* Create the Combo item using the arbitrary data and the text to be displayed
*/
private ComboItem( I itemData, String text )
{
super();
ivItemData = itemData;
ivText = text;
}
/**
* Get the text to be displayed in the Combo control
*/
private String getText()
{
return ivText;
}
/**
* Get the object associated with the text shown in the Combo control
*/
private I getItemData()
{
return ivItemData;
}
/**
* Gets information about the item and its data item
*/
private String getInformation()
{
return ivText + ": " + ivItemData.toString();
}
}
}
在您的工具包中创建一个名为 ComboData 的类,然后将代码复制粘贴到其中,就在包语句下方。
关于java - 如何轻松地从 SWT Combo 下拉列表中获取数据引用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62477570/
我以这种方式填充了组合框 foreach (Control c in this.Controls) { if (c is ComboBox) { (c as Co
我有一个像 items: { xtype: 'combo', id: 'combo', queryMode:
我正在尝试覆盖 vaadin-combo-box-overlay 元素中的背景颜色。 这是我要覆盖的 css,更具体地说是背景属性,来源取自 ( https://github.com/vaadin/v
如何固定组合框的大小(内容可能会更大,但组合大小应该是固定的)。现在我的组合大小是根据组合中的项目改变的。 我正在尝试获取类似于雅虎注册页面安全问题组合的内容: https://edit.yahoo.
在我的组合框中,我有这样的东西: displayTpl: Ext.create('Ext.XTemplate', '',
我将 WPF 与 MVVM 一起使用。问题是我有 Model 类说 Person 包含三个属性 PersonID、Name、Job。 View 模型包含 Person类(class)。 View 包含
我想在每次打开组合时加载组合的内容。所以我添加了如下代码: $("#CustomerCombo").on("click", function (e) { $.ajax({ ty
我想知道是否有人可以调整我的代码以获得我正在寻找的功能。我在这里遗漏了一些东西。我快到了。问题在于,当从列表中选择菜单项时,它不会向上移动而是重复。然后,如果我再次单击下拉此菜单,那么我将在菜单中获得
鉴于下面的代码可以正常工作,如何实现包含书面文字的提案,而不仅仅是以给定序列开头的提案? 我正在 SQL 中寻找类似“% LIKE%”的内容。例如,在写“car”时,我希望有人建议使用“verdure
我正在寻找一项小任务的解决方案。 我正在使用 SWT。 我有一个组合类(class): public class ComboBoxComponent extends Combo { priva
我有一个组合框,可以在用户选择一个值后立即将焦点转移到另一个表单元素,配置如下: new Ext.form.ComboBox({ // ... listeners: {
我正在尝试模拟一些我使用 SQL 而不是使用所有 Python 的代码。在这里得到一些帮助 CSV to Python Dictionary with all column names? 我现在可以将
如何从 SWT 组合下拉列表中获取数据引用?目前我需要从组合框中获取文本,然后遍历我的数据对象,直到找到一个与组合框报告的文本相同的文本。 Combo combo = new Combo( n
试图获取组合框的先前值。我尝试了“更改”事件,但它不起作用。如果我没记错的话,新的 extjs 4.0 不存在'beforeselect'。关于如何做到这一点的任何想法? 我知道我们可以使用 chan
我正在尝试以编程方式打开 Webix 组合控件的弹出窗口,但存在三个我无法克服的问题。 这是snippet代表他们: 弹出列表扩展到表单容器的宽度(可能当前的 combo.$view 是打开弹出窗口的
JFace 实体和它们包装的 SWT 控件之间有什么区别? ComboViewer -> Combo/CCommbo TableViewer -> Table ListViewer -> List 等
我的 SWT Combo 有很多项目,而下拉列表总是同时只显示 5 个项目。 (是的,我可以上下滚动以查看所有其他项目) 我希望下拉列表同时显示更多项目,例如同时 10 个项目。 如何制作下拉列表以同
我有一个组合,其中包含选择列表中的字符串列表。如果用户下拉字符串列表,某些前景色将为黑色(标准),而其他定义的字符串应为前景色绿色或红色。我该如何渲染才能达到这个目的?我认为必须用 ComboView
我想突出显示组合框中的文本 (org.eclipse.swt.widgets.Combo)。 例如,假设组合文本为“IP:6061”。我想强调“IP”。我怎样才能做到这一点? 最佳答案 这是一个可重复
我在 SWT 中有一个组合下拉菜单,并且一直在考虑根据某些条件为列表中的不同项目设置不同的颜色。我稍后再决定(即,如果字符串超过 5 个字符,则该项目应具有红色背景,否则应为绿色) 我设法更改了整个
我是一名优秀的程序员,十分优秀!