c#如何让某个控件获得焦点?
比如我按button1焦点在textbox1上,我按button2焦点落在textbox2上,如何做到?声明,textBox2.Focus();不行,就别废话了...
比如我按button1焦点在textbox1上,我按button2焦点落在textbox2上,如何做到?
声明,textBox2.Focus();不行,就别废话了 展开
声明,textBox2.Focus();不行,就别废话了 展开
展开全部
为textBox添加Press方法.
private void textBox4_KeyPress(object sender, KeyPressEventArgs e)
{
if (e.KeyChar == '\r')
{
button1.Focus();
}
}
private void textBox4_KeyPress(object sender, KeyPressEventArgs e)
{
if (e.KeyChar == '\r')
{
button1.Focus();
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询