DelegateCommand and IActiveAware #2903
Answered
by
brianlagunas
MartinRobins
asked this question in
General
-
I notice that DelegateCommandBase (and its derivatives) support IActiveAware however in my experience (and subsequently looking at the code) shows that IsActive is never set. Am I misunderstanding the meaning/usage of this property as I was expecting it to be set true when the command is executing and return to false once the command has completed? |
Beta Was this translation helpful? Give feedback.
Answered by
brianlagunas
Jul 6, 2023
Replies: 1 comment 1 reply
-
Yes, you do have a misunderstanding. You're responsible for setting the command's active property. It is not done automatically. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
dansiegel
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yes, you do have a misunderstanding. You're responsible for setting the command's active property. It is not done automatically.