Controls such as TextBox
use TwoWay
Default Binding
<TextBox Text="{Binding Text1}" />
However, using custom controls, I need something like
<local:UserControl1 Text="{Binding Text1, Mode=TwoWay}" />
Is there a way to set property bindings to use TwoWay default bindings?
source share