C#文本框光标定位

时间:2010-05-04 16:55:15

标签: c# textbox cursor

我觉得我只是缺少一个简单的属性,但是你可以将光标设置到文本框中一行的末尾吗?

private void txtNumbersOnly_KeyPress(object sender, KeyPressEventArgs e)
{
   if (Char.IsDigit(e.KeyChar) || e.KeyChar == '\b' || e.KeyChar == '.' || e.KeyChar == '-')
   {
      TextBox t = (TextBox)sender;
      bool bHandled = false;
      _sCurrentTemp += e.KeyChar;

      if (_sCurrentTemp.Length > 0 && e.KeyChar == '-')
      {
         // '-' only allowed as first char
         bHandled = true;
      }

      if (_sCurrentTemp.StartsWith(Convert.ToString('.')))
      {
         // add '0' in front of decimal point
         t.Text = string.Empty;
         t.Text = '0' + _sCurrentTemp;
         _sCurrentTemp = t.Text; 
         bHandled  = true;
      }

      e.Handled = bHandled;
   }

测试'。'后作为第一个char,光标位于添加的文本之前。因此,而不是“0.123”,结果是“1230”。没有自己移动光标。

如果这是一个重复的问题,我也会道歉。

5 个答案:

答案 0 :(得分:22)

t.SelectionStart = t.Text.Length;

答案 1 :(得分:3)

在WPF中你应该使用:

textBox.Select(textBox.Text.Length,0);

其中0是选择的字符数

答案 2 :(得分:2)

在文本框中设置SelectionStart属性将控制光标位置。

答案 3 :(得分:2)

假设你使用的是WinForms而不是WPF ......

void SetToEndOfLine(TextBox tb, int line)
{
   int loc = 0;
   for (int x = 0; x < tb.Lines.Length && tb <= line; x++)
   {
      loc += tb.Lines[x].Length;
   }
   tb.SelectionStart = loc;
}

答案 4 :(得分:2)

这将很有用。

        private void textBox_TextChanged(object sender, EventArgs e)
    {
        string c = "";
        string d = "0123456789.";
        foreach (char a in textBox.Text)
        {
            if (d.Contains(a))
                c += a;
        }
        textBox.Text = c;
        textBox.SelectionStart = textBox.Text.Length;
    }