有谁知道如何从父表单调用任何对象(标签、文本框、面板)。例如,我有一个表单 A,这个表单有一个标签 L、文本框 T 和按钮 B。我是否可以通过函数(public DoSomething(Form f))传递整个表单,然后更改标签 L 的属性,函数DoSomething中的文本框T和按钮B?
class DoSomething{
private Form parentForm;
public DoSomething(Form f) {
parentForm = f;
// HERE I WOULD LIKE TO CHANGE PROPERTIES OF LABEL L, BUTTON B
}
}