hi All,
when I bind a property in the child viewmodel to a textbox, the source won't get updated no matter what mode i set on the binding.
the xaml code is like this:
<TextBox Text="{Binding Path=OrderDetail.CashPaid, Mode=TwoWay}"/>
when the view loaded, the binding system query the CashPaid property once. but whenever the text is edited, the value won't update the source. I must missing something here or the WPF databinding system does not support this kind of binding.
thx
Kevin