5

我有一个带有后台线程的 Windows 窗体文本框,它每秒更新一次它的值。如果我将光标放在文本框中,它将在下次更新时失去其当前位置。与文本选择相同。

我试图这样解决它

    protected void SetTextProgrammatically(string value)
    {
        // save current cursor position and selection
        int start = textBox.SelectionStart;
        int length = textBox.SelectionLength;

        // update text
        textBox.Text = value;

        // restore cursor position and selection
        textBox.SelectionStart = start;
        textBox.SelectionLength = length;
    }

它大部分时间都很好用。这是它不起作用的情况:
1)我将光标放在文本框中文本的末尾
2)按 SHIFT 并使用 <- 箭头键将光标向左移动
选择将无法正常工作。

它看起来像组合SelectionStart=10SelectionLength=1自动将光标移动到位置 11(不是我想要的 10)。

如果有什么我能做的,请告诉我!我正在使用 Framework.NET 2.0。
必须有一种方法可以在文本框中设置光标位置,而不是SelectionStart+SelectionLength.

4

3 回答 3

4
//save position
            bool focused = textBox1.Focused;
            int start = textBox1.SelectionStart;
            int len = textBox1.SelectionLength;
            //do your work
            textBox1.Text = "duviubobioub";
            //restore
            textBox1.SelectionStart = start;
            textBox1.SelectionLength = len ;
            textBox1.Select();
于 2013-02-28T14:45:52.433 回答
3

我找到了解决方案!

        // save current cursor position and selection 
        int start = textBox.SelectionStart;
        int length = textBox.SelectionLength;

        Point point = new Point();
        User32.GetCaretPos(out point);

        // update text
        textBox.Text = value;

        // restore cursor position and selection
        textBox.Select(start, length);
        User32.SetCaretPos(point.X, point.Y);

现在它的工作就像它应该的那样。

于 2013-03-01T06:50:19.150 回答
0

要在文本框中设置光标位置而不选择开始...!

textbox1.Select(textbox1.text.length,0); /* ===> End of the textbox  */
  textbox1.Select(0,0);                    /* ===> Start of the textbox  */
于 2016-02-09T03:56:20.433 回答