Click or drag to resize

ICheckableMenuCommand Interface

[Missing <summary> documentation for "T:Altaxo.AddInItems.ICheckableMenuCommand"]


Namespace: Altaxo.AddInItems
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public interface ICheckableMenuCommand : ICommand

The ICheckableMenuCommand type exposes the following members.

Methods
 NameDescription
Public methodCanExecuteDefines the method that determines whether the command can execute in its current state.
(Inherited from ICommand)
Public methodExecuteDefines the method to be called when the command is invoked.
(Inherited from ICommand)
Public methodIsChecked 
Top
Events
 NameDescription
Public eventCanExecuteChangedOccurs when changes occur that affect whether or not the command should execute.
(Inherited from ICommand)
Public eventIsCheckedChanged Event that occurs when the checked state of the command changes. Warning: this is a weak event like ICommand.CanExecuteChanged! Subscribers need to ensure they keep a reference to the delegate alive. Implementers need to ensure they use a weak reference to the delegate.
Top
See Also