I have several toolitems that I want to enable/disable based on which MPart the user selected. How can I accomplish that ?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You can add the following code to the handler of your toolbar items:
@CanExecute is called before the handled entry is shown in menus or toolbars. If an entry cannot be executed, its state is set to "disabled". In the above code, the active part is injected and can then be used to determine the handler's executable state. |
|||
|
|