Does such thing exist (like UpdateSourceTrigger exists) or is it possible somehow? I’d like to only update the target when I want to. One-time binding won’t work, because I don’t want it to update one time – I’d like to update it when I want to, not when the bound object changes.
So my question is very simple: how to NOT change the target when the source changes, but change the target when something is called?
Thanks
Another thing you can do is use an attached behavior that hooks into some event that isn’t directly related to your binding. Below is a skeleton of some working code just to give you some ideas.