调用父表单函数?

时间:2015-01-07 16:58:12

标签: c# winforms

我有一个包含2个表单的C#窗口程序。基本表单(Form1)具有刷新(RefreshView)视图的功能。单击按钮将调出Form2。点击后说出"申请" Form2上的按钮,如何调用Form1中存在的RefreshView函数?两种表格均由用户打开。

Form1.cs中的Form1代码:

namespace MonitorCSharp
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        public void RefreshView()
        {
            //refresh code etc
        }
    }
}

Form2.cs中的Form2:

namespace MonitorCSharp
{
    public partial class Form2 : Form
    {
        public Form2(String args)
        {
            InitializeComponent();
            form2Text = args;
        }

        private void button3_Click(object sender, EventArgs e)
        {
            this.Close();
            //I want to refresh here
        }
}

我尝试了各种代码,包括:

((Form1)this.ParentForm).RefreshView();

要调用刷新函数,但到目前为止一切都给了我一个运行时错误。我错过了什么吗?

我没有编译错误。运行时错误是:

A first chance exception of type 'System.NullReferenceException' occurred in MonitorCSharp.exe
An unhandled exception of type 'System.NullReferenceException' occurred in MonitorCSharp.exe
Additional information: Object reference not set to an instance of an object.

4 个答案:

答案 0 :(得分:5)

父表单可以将事件处理程序附加到它的孩子的FormClosed事件处理程序,以便在代码关闭时执行:

public partial class Form1 : Form
{
    public void Foo()
    {
        Form2 child = new Form2();
        child.FormClosed += (s, args) => RefreshView();
        child.Show();
    }

    public void RefreshView()
    {
        //refresh code etc
    }
}

答案 1 :(得分:2)

在构造Form2时,很可能只需要传递对Form1的引用。

找到Form2的构造函数,这很可能是:

public Form2()
{
    InitializeComponent();
}

并为其添加一个参数,现在它显示为:

public Form2(Form form1)
{
    InitializeComponent();
    _form1 = form1;
}

在Form2类中添加一个私有字段:

private Form1 _form1;

然后,当您从Form1.cs创建Form2时,您应该使用

new Form2(this);

其中"这个"表示Form1的当前实例。

要从Form2访问RefreshView,请调用

_form1.RefreshView();

答案 2 :(得分:0)

您收到NullReferenceException。

您从未初始化this.ParentForm的机会非常好。

当Form1创建Form2时,请确保正确设置该属性。

这样做的一种方法是为Form2创建一个构造函数,该构造函数接受其父项的实例,例如。

public Form2(Form1 parent)
{
    InitializeComponent();
    this.ParentForm = parent;
}

从父表单创建子表单时,

Form2 child = new Form2(this);

答案 3 :(得分:0)

经过一些试验和错误,这对我有用。 (被调用的函数不是静态的。)(VS2010。)

主要形式:

internal partial class Form1 : Form
{
    ...
    using (Form2 f2 = new Form2(this) { Icon = this.Icon })  // Instantiate the child form.
    {
        f2.someUpDown.Maximum = foo;  // (Optionally write data to the child form.)
        f2.ShowDialog();  // Show the child form and wait until it closes.
        ...
        bar = f2.someUpDown.Value;  // (Optionally read data from the [closed] child form.)
        ...
    }  // (Destroy the child form.)

儿童表格:

internal partial class Form2 : Form
{
    private Form1 _parent;  // (need this variable)

    internal Form2(Form1 parent)  // (the default constructor)
    {
        InitializeComponent();

        _parent = parent;  // Save the argument.
        ...
        someUpDown.Maximum = Form1.foo;  // (Optionally read data from the parent form.)
        Form1.bar = someUpDown.Value;  // (Optionally write data to the parent form.)
        ...
        _parent.myProcedure(arg1);  // (Optionally call myProcedure() in the parent form.)
        ...
    }

    private void SomeButton_Click(object sender, EventArgs e)  // (callback from event loop)
    {
        ...
        someUpDown.Maximum = _parent.foo;  // (Optionally read data from the parent form.)
        _parent.bar = someUpDown.Value;  // (Optionally write data to the parent form.)
        ...
        _parent.myProcedure(arg1);  // (Optionally call myProcedure() in the parent form.)
        ...
    }

如果我将private Form1 _parent;更改为private Form _parent;,则该内容无效。

如果我将internal Form2(Form1 parent)更改为internal FormTubeSelection(Form parent),则在将_parent = parent;更改为_parent = (Form1)parent;

之前,它无效

几乎无处不在,您使用_parent.前缀访问Form1字段和方法; Form1.前缀无效。 EXCEPTION:在构造函数中访问Form1字段为Form1.foo; _parent.foo在那里无效。

如果您只需要在子表单关闭时调用主窗体中的过程,则可以在f2.ShowDialog()之后立即从主窗体中调用。如果调用是有条件的,则主窗体中的代码可以测试子窗体中的数据和/或f2.ShowDialog()的返回值,直到您处理f2。