Controls like the TextBox
use TwoWay
Binding by default
<TextBox Text="{Binding Text1}" />
However with Custom User Controls, I will need something like
<local:UserControl1 Text="{Binding Text1, Mode=TwoWay}" />
Is there a way I can set bindings on a property to use TwoWay Bindings by default?