Get a Windows Forms control by name in C#

后端 未结 14 1522
野性不改
野性不改 2020-11-22 09:22

I have a ToolStripMenuItem called myMenu. How can I access this like so:

/* Normally, I would do: */
this.myMenu... etc.

/* But ho         


        
14条回答
  •  孤街浪徒
    2020-11-22 10:13

    Control GetControlByName(string Name)
    {
        foreach(Control c in this.Controls)
            if(c.Name == Name)
                return c;
    
        return null;
    }
    

    Disregard this, I reinvent wheels.

提交回复
热议问题