C# 窗体中一个类中调用另一个窗体的控件或方法

        设有form1和from2,假如form1调用form2的控件,在form1的代码窗口定义一个form2的对象,把你想要调用的form2的控件的属性Modifier改为Publlic就可以在form1的窗体调用了。


一种是创建窗体对象的方式,通过对象调用控件或方法 。

例如:

Form2 frm2 = new Form1();
frm2.Button; //调用控件
frm2.Method();  //调用方法



另一种是不创建窗体对象 


在Form2类下定义静态变量,构造方法中引用这个Form2

class Form2: Form
{
    public static Form2 frm2;

    public Form2()
    {
        InitializeComponent();
        frm2 = this;
    }

    public void Method()
    {

    }
}


调用该窗体的控件或方法

Form2.frm2.Button;
Form2.frm2.Method();



你可能感兴趣的:(C# 窗体中一个类中调用另一个窗体的控件或方法)