c#中,我点击一个button按钮后,就向textbox里插入“hello”,怎么样在插入的同时使光标在“hello”的后面

这样手动输入时就可以直接接着输入了
2024-12-13 16:53:06
推荐回答(3个)
回答1:

textBox.AppendText("hello");
textBox.Focus();
textBox.SelectionStart = textBox.Text.Length;

回答2:

在button按钮事件里写上一句
private void button_click(object sender,eventargs e)
{
textbox.text="hello";
textbox.focus();
}

回答3:

设置输入焦点
yourTextBoxName.focus();