I have a behavior that I want to track the actions of a control, and I want to read that state off of that behavior from my ViewModel.
Currently I'm doing this:
<MyControl>
<i:Interaction.Behaviors>
<b:MyBehavior />
</i:Interaction.Behaviors>
</MyControl>
Is there a way I can bind to the behavior as a property of the ViewModel or some other part of the application rather than instantiating it in XAML? What is the syntax?