在旧文本之前将文本插入WPF文本框

时间:2012-08-01 05:28:35

标签: c# wpf textbox

我如何在旧文本

之前将文本插入WPF textbox

old text类似,然后我添加了文字new text old text

3 个答案:

答案 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";