1

我正在尝试ProcessTabKey()在 Windows 窗体的 keydown 事件中使用不适用于 c#splitcontainer 的方法

    public Form1()
    {
        InitializeComponent();
    }
    private void Form1_Load(object sender, EventArgs e)
    {
        this.BringToFront();
        this.Focus();
        this.KeyPreview = true;
    }
    private void Form1_KeyDown(object sender, KeyEventArgs e)
    {
        if (e.KeyCode == Keys.Enter)
        {

                e.Handled = true;
                this.ProcessTabKey(true);
        }

    }
4

2 回答 2

0

你的代码是正确的。确保您要选择的所有控件的TabStop属性都设置为 true。

于 2013-07-03T07:39:49.580 回答
0

使用 SendKeys.send("{tab}"); 而不是 this.ProcessTabKey(true);

于 2015-10-07T13:23:23.963 回答