窗体中的UserControl内部的焦点控件

时间:2018-07-27 07:30:22

标签: c# .net winforms user-controls

我有一个表单,将其命名为 MyForm ,并且在表单中有一个UserControl,将其命名为 MyUserControl 。我想将焦点设置为 MyUserControl 中的TextBox。

所以连接看起来像这样:

- Form ┐
--    UserControl ┐
---            TextBox

当显示MyForm时,也会显示MyUserControl,并且此解决方案的焦点不起作用

public partial class MyUserControl : UserControl
{

    public MyUserControl()
    {
        InitializeComponent();
    }

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

但此解决方案可以起作用:

public partial class MyUserControl : UserControl
{
    // ...

    public TextBox MyTextBox
    {
        get
        {
            return textBox1;
        }
    }

    // ...
}

public class MyForm() : Form
{
    public MyForm()
    {
        InitalizeComponents();
    }


    private void MyForm_Shown(object sender, EventArgs e)
    {
        ActiveControl = myUserControl.MyTextBox;
    }
}

我还尝试先将 ActiveControl 设置为MyUserControl,然后在MyUserControl中将 ActiveControl 设置为MyTextBox,但它也没有不行。

问题:

我的工作解决方案是一个不错的解决方案,还是有没有更简单,更不错的解决方案,而不是使用MyTextBox中的MyForm

1 个答案:

答案 0 :(得分:1)

首先,您必须将用户控件集中在表单中。像这样:

public class MyForm() : Form
{
    private void MyForm_Shown(object sender, EventArgs e)
    {
        myUserControl.Focus();
    }
}

,然后在用户控件中:

public partial class MyUserControl : UserControl
{
    private void MyUserControl _Shown(object sender, EventArgs e)
    {
       textBox1.Select();
    }
}

这似乎是唯一可行的组合(焦点->选择)。