It's hard to guess without code, but you should be able to install BindingMode on OneWay.
<TextBox Text="{Binding Path=MyProperty, Mode=OneWay}" />
or from code:
Binding binding = new Binding(); binding.Mode = BindingMode.OneWay;
Razzie Feb 26 '09 at 12:14 2009-02-26 12:14
source share