我创造了一些新方法:
void newMethod(int x, int y)
{
Button B = new Button();
B.Size = new Size(100, 30);
B.Location = new Point(x, y);
B.Text = "Text";
Controls.Add(B);
}
现在我用其他方法 创造了一个新的面板:
void Something()
{
Panel P = new Panel();
P.Size = new Size(300, 300);
P.Location = new Point(0, 0);
P.BackColor = new Color(Blue);
Controls.Add(P);
}
我如何将我第一个创建按钮的方法 添加到第二个方法的面板上?