Hi, What I am trying to do - I have a grid with some data, lots of it being text, what I want is to be able to hightlight a certain string within all that text....
I have the term...test The text in the cell is "test 123 testing 123"
I want the word test to appear yellow, bold (or any other style I need). I have done this with an asp.net grid by using the datarowbound event, and replacing the string "test" with some html that give the string the required style.
How would I go about doing that in a silverlight cell?
Maybe worth noting, the rows are added to the grid programmatically at runtime...
tcol = new DataGridTextColumn();
tcol.Binding = new System.Windows.Data.Binding("class_property");
tcol.Header = "Header";
tcol.IsReadOnly = true;
dgResults.Columns.Add(tcol);
Thanks in anticipation... Steve