WPF TextBox Insert Text na posição intermediária

textBox.Text = textBox.Text.Insert(textBox.CaretIndex, "<new text>");
Casual Coder