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

China☆狼群 提交于 2019-12-18 11:52:01

问题


Say I have a Textbox nested within a TabControl.

When the form loads, I would like to focus on that Textbox (by default the focus is set to the TabControl).

Simply calling textbox1.focus() in the Load event of the form does not appear to work.

I have been able to focus it by doing the following:

 private void frmMainLoad(object sender, EventArgs e)
 {
     foreach (TabPage tab in this.tabControl1.TabPages) 
     {
         this.tabControl1.SelectedTab = tab;
     }
 }

My question is:

Is there a more elegant way to do this?


回答1:


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.




回答2:


Try putting it in the Form_Shown() event. Because it's in a container, putting in the Form_Load or even the Form() constructor won't work.




回答3:


Try to use textbox1.Select() instead of textbox1.Focus(). This helped me few times.




回答4:


You just need to add the Control.Select() for your control to this code. I have used this to set focus on controls during validation when there are errors.

private void ShowControlTab(Control ControlToShow)
    {
        if (!TabSelected)
        {
            if (ControlToShow.Parent != null)
            {
                if (ControlToShow.Parent.GetType() == typeof(TabPage))
                {
                    TabPage Tab = (TabPage)ControlToShow.Parent;
                    if (WOTabs.TabPages.Contains(Tab))
                    {
                        WOTabs.SelectedTab = Tab;
                        TabSelected = true;
                        return;
                    }
                }

                ShowControlTab(ControlToShow.Parent);
            }
        }
    }



回答5:


I had a user control within another user control. textbox1.Select() worked for me but textbox1.Focus() did not work.

You can also try setting Tabstop to false, textbox1.Focus(), TabStop true.




回答6:


  private void ChildForm1_Load(object sender, EventArgs e)
        {
            ActiveControl = txt_fname;

        }

i use this code it works fine on win tab control or dotnetbar supertab contrl



来源:https://stackoverflow.com/questions/48680/winforms-c-sharp-set-focus-to-first-child-control-of-tabpage

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!