You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I propose we add support for commands in the control and not just hook onto events. We can still keep the events for backwards compatibility.
The Why
This would allow users to further decouple their views from their models. It allows for easy integration into projects that use the MVVM design pattern.
The How
It's something I'll have to a little further into but from what I know it should be fairly straightforward; just add a few ICommand properties to the control and call the Execute function when they need to be executed.
The text was updated successfully, but these errors were encountered:
To be honest, thinking about this more - there is always EventBinder to accomplish this as a workaround. Happy to close if no one really wants this feature.
Description
I propose we add support for commands in the control and not just hook onto events. We can still keep the events for backwards compatibility.
The Why
This would allow users to further decouple their views from their models. It allows for easy integration into projects that use the MVVM design pattern.
The How
It's something I'll have to a little further into but from what I know it should be fairly straightforward; just add a few
ICommand
properties to the control and call theExecute
function when they need to be executed.The text was updated successfully, but these errors were encountered: