垂直パネルがあり、ボタンがあります。そのボタンには、名前を挿入してパネル内にボタンを作成するテキストボックスを表示する必要があります
テキストボックスとその上にボタンを作成するためのボタンを表示する方法がわかりません= /
private void button1_Click(object sender, EventArgs e)
{
if (textBox1.Visible)
textBox1.Visible = false;
else
textBox1.Visible = true;
Button c = new Button();
c.Location = new Point(15, x);
c.Text = "novo"; //here comes with the button name, need textbox receives the name and create a button with the name of the textbox.
panel1.Controls.Add(c);
x += 10 + c.Size.Height;
}