我正在尝试组织我的项目,但是遇到一个问题,我无法向MainForm
动态添加按钮。我该如何做到而又不会出错并且仍然使MainForm
优先而不是其他课程来启动?
答案 0 :(得分:1)
public class anotherClass
{
public void AddButton(Form form)
{
Button b = new Button() { Text = "Dynamic Button", Width = 200 };
form.Controls.Add(b);
}
}
public class MyForm
{
anotherClass obj = new anotherClass();
obj.AddButton(this);
}
答案 1 :(得分:0)
类似这样的东西:
private void Form1_Load(object sender, EventArgs e)
{
Button b = new Button() { Text = "Dynamic Button", Width = 200 };
this.Controls.Add(b);
}