Winforms c# - Set focus to first child control of TabPage

前端 未结 6 1489
醉酒成梦
醉酒成梦 2020-12-29 06:03

Say I have a Textbox nested within a TabControl.

When the form loads, I would like to focus on that Textbox (by default the

6条回答
  •  余生分开走
    2020-12-29 06:32

    The following is the solution:

    private void frmMainLoad(object sender, EventArgs e)
    {
        ActiveControl = textBox1;
    }
    

    The better question would however be why... I'm not entirely sure what the answer to that one is.

    Edit: I suspect it is something to do with the fact that both the form, and the TabControl are containers, but I'm not sure.

提交回复
热议问题