WinForms:使用 C# 添加控件

WinForms: adding a control with c#

我是 c# 新手,我知道如何动态添加控件,但我不知道如何将该控件设置为 this.[control_name]。请注意,这里的 thisForm.

这可以通过 private System.Windows.Forms.[Control_type] [control-name]; 静态完成,但我如何通过方法执行此操作以便稍后声明 this.[control-name] = [variable]?

请注意,variable 类似于 new TextBox()

var txt = new TextBox();  //txt is the variable you are looking for
Form1.Controls.Add(txt); //added it to the form

现在您可以通过txt访问它:

txt.Location = new Point(0,0);
txt.Visible = true;

如果您在一个方法中创建控件(如您在评论中提到的),您可以return并像下面这样使用它:

public TextBox AddTextBox()
{
    var txt = new TextBox();  
    Form1.Controls.Add(txt); 
    return txt;
}

var newTxt = AddTextBox();
newTxt.Location = new Point(0,0);
newTxt.Visible = true;