如何将 ComboBoxCellEditor 设为只读?
How to make a ComboBoxCellEditor read-only?
我有一个 ComboBoxCellEditor
,用户应该只能 select 其中的项目,但不能在组合框中编辑它们。
有这样的s.th吗?
cellEditor.setReadOnly(true);
肯定是通过以下方式创建的:
new ComboBoxCellEditor(parent, items, SWT.READ_ONLY)
会成功吗?
我有一个 ComboBoxCellEditor
,用户应该只能 select 其中的项目,但不能在组合框中编辑它们。
有这样的s.th吗?
cellEditor.setReadOnly(true);
肯定是通过以下方式创建的:
new ComboBoxCellEditor(parent, items, SWT.READ_ONLY)
会成功吗?