-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Closed
Labels
Description
When using BindCommand with a parameter, like:
BindCommand (ViewModel,
x => x.MyCommand,
x => x.KeyBinding,
x => x.MyProperty).DisposeWith (disposable);The parameter will be initialized once. That is the parameter will remain the same even if the MyProperty is updated.
Expected Behavior: Execute an expression "withParameter" every time a command is executing