本文介绍了如何使用一次移至右边的按钮移动光标的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何使用一次一次向左移一个字符的按钮移动光标..

how to move the cursor using a button going to the left one char at a time..

private void button6_Click(object sender, EventArgs e)
        {
            textBox1.SelectionLength = 0;
            for (int i = 0; i > textBox1.SelectedText.Length; i++ )
            {
                textBox1.SelectionStart = textBox1.Text.Length+1;
                textBox1.Focus();
                textBox1.ScrollToCaret();
            }
        }

推荐答案

private void butLeft_Click(object sender, EventArgs e)
     {
     if (tbData.SelectionStart > 0)
         {
         tbData.SelectionStart--;
         tbData.Focus();
         }
    }

 private void butRight_Click(object sender, EventArgs e)
     {
     if (tbData.SelectionStart < tbData.Text.Length)
         {
         tbData.SelectionStart++;
         tbData.Focus();
         }
     }



这篇关于如何使用一次移至右边的按钮移动光标的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-31 07:07