It's hard to guess without code, but you should be able to set the BindingMode to OneWay.
<TextBox Text="{Binding Path=MyProperty, Mode=OneWay}" />
or from code:
Binding binding = new Binding();
binding.Mode = BindingMode.OneWay;
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…