我如何在旧文本
之前将文本插入WPFtextbox
与old text
类似,然后我添加了文字new text old text
答案 0 :(得分:5)
你可以使用
textbox.Text="my new text" + textbox.Text;
或
txtbox1.SelectionStart = 0;
txtbox1.SelectedText = "my new text";
答案 1 :(得分:3)
我认为最简单的方法是使用Binding Converter来获取已更改的数据,并在将其分配给用户界面之前将其转换为您想要的格式。
答案 2 :(得分:2)
@ S3ddi9 对于第二个选项,您可能需要执行以下操作:
txtbox1.SelectionStart = 0;
txtbox1.SelectionLength = 0; //this was missing
txtbox1.SelectedText = "my inserted text at top";