when we hover over a wrapped text field, I want to immediately get the word or text under the mouse.
I saw several examples for one text field, like this one , but I have a wrapped text field. I think I could do this if I had a MeasureString function, but I don't have it in Silverlight (it would be useful for other things).
TextBox Example
<Textbox TextWrapping="Wrap" Width="50" Text=" ... " />
source
share