Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在 Eclipse RCP 中灰显依赖首选项? 偏好是否可以以某种方式定义为依赖于另一个偏好,以便它们显示为灰色,如果它依赖的偏好 - 被禁用?
由于首选项只是您可以调用的 SWT 控件
setEnabled(false)
方法来禁用(灰显)它们。在 FieldEditorPreferencePage 的情况下,您可能应该调用
***FieldEditor.setEnabled(false, getFieldEditorParent());