I am sure most of you have come across this when you type in a textbox you like instantly to filter a ViewCollection according to has been typed.
Its very straight forward in WPF, just change the UpdateSourceTrigger for Text binding to PropertyChanged.
As you would expect Silverlight doesnt have it. There is just a default and explicit instead.
I had the idea to bind an Interaction behavior to TextChanged event of the textbox instead. Would you recommend this approach or is there a better way?