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 应用程序的元素?例如,通过 id 获取视图,通过 id 获取命令,获取活动视图。
假设您的按钮名称是 button1,您可以通过以下方式启用它:
button1.setEnabled(true);
并通过以下方式禁用它:
button1.setEnabled(false);