In WPF you can insert at the caret position using the CaretIndex
property. However this seems to be missing in the Silverlight textbox control.
Is it possible using a different technique?
In WPF you can insert at the caret position using the CaretIndex
property. However this seems to be missing in the Silverlight textbox control.
Is it possible using a different technique?
Try:-
myTextBox.Select(position, 0);
myTextBox.SelectedText = "Content to insert";