how i can Insert text into WPF textbox before the old text
like old text then i add text new text old text
you can use either
textbox.Text="my new text" + textbox.Text;
or
txtbox1.SelectionStart = 0;
txtbox1.SelectedText = "my new text";
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With