I am using Extended WPF toolkit's DecimalUpDown control with its Value property binded to a Decimal? as follows:
<extToolkit:DecimalUpDown Value="{Binding BlahBlah, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" ShowButtonSpinner="False" />
private Decimal? blahblah = 5;
public Decimal? BlahBlah
{
get { return blahblah; }
set { blahblah = value; }
}
I noticed that as I key in the number in the textbox, the Value does not get updated until I click outside the control. Its ValueChanged event is not fired as well until I click outside.
I intend for the value to be updated as soon as the user changes the Value (i.e. real-time). Is there anyway to accomplish this?
UpdateSourceTriggertoPropertyChangedbut you already did that. – Martin Liversage Sep 27 '11 at 11:02