I was just googling the difference between WPF Command and Event in WPF. i landed on the following page of stackoverflow where the discussion is going on.
What is the difference between WPF Command and Event?
I am only able to understand following from there
- Commands can be written in business layer while event only in presentation
- A single command can be associated with many controls but event can only be associated with only one control.
Am I right? Is there any other difference between them?