Silverlight Two Way Data Binding on Key Up

Posted by kouPhax on Stack Overflow See other posts from Stack Overflow or by kouPhax
Published on 2010-03-16T13:40:06Z Indexed on 2010/03/16 13:56 UTC
Read the original article Hit count: 251

Filed under:

Is there a way to fire a two way data bind when the key up event fires in Silverlight. Currently I have to lose focus on the textbox to get the binding to fire.

<TextBox x:Name="Filter" KeyUp="Filter_KeyUp" Text="{Binding Path=Filter, Mode=TwoWay }"/>

© Stack Overflow or respective owner

Related posts about Silverlight