I have a search textbox on silverlight app where user types in search term and results are displayed in textblock, requirement is the search term matches should be highlighted in textblocks.
I have seen some examples of highlighting search terms in textblock but none using mvvm pattern. Im binding text property of textblock in viewmodel, i tried to access inline collection to specify different tags but later came to know that inline collection is not bindable.
<TextBlock Text="{Binding Description}"/>
This description is being set in ViewModel