如何关注Windows-CE中的表单?

时间:2010-09-07 20:21:17

标签: c# windows-ce

我有这个方法:

private void Form1_KeyPress(object sender, KeyPressEventArgs e)
        {
            if (e.KeyChar == '1')
            {

如果在TextBox 上插入任何文本后,如何在表单1上重点提前感谢

1 个答案:

答案 0 :(得分:1)

在表单上调用Focus方法,即

this.Focus()