欢迎来到入门教程网!

C#教程

当前位置:主页 > 软件编程 > C#教程 >

C#实现子窗体与父窗体通信方法实例总结

来源:本站原创|时间:2020-01-10|栏目:C#教程|点击:

本文实例总结了C#子窗体与父窗体通信方法。分享给大家供大家参考。具体如下:

【第一种方法:】

第一步:

创建接口IForm,父窗体继承这个接口

public interface IForm
{
    void RefreshForm();
}

第二步:

父窗体实现接口中的方法,在实现接口的方法中写入刷新代码

Form2 f = new Form2();
f.Owner = this;
f.ShowDialog();

第三步:

在子窗体中调用,刷新的方法

复制代码 代码如下:
(this.Owner as IForm).RefreshForm();

【第二种方法:】

1.父窗体中定义刷新的方法RefreshForm()
2.在点击的事件Show出子窗体的时候,代码如下:

Form form=new Form();
form.Show(this);

3.在子窗体的点击事件中,代码如下:

复制代码 代码如下:
(this.Owner as Form).RefreshForm();

【第三种方法:】

通过事件解决方法:
子窗体中定义:

public delegate void sendmessage(string message); 
public event sendmessage SendTo ;

主窗体:

ChildForm frm = new ChildForm(); 
frm.SendTo += new ChildForm.sendmessage(SendArgs); 
frm.ShowDialog(this);
private void SendArgs(string Message)//主窗体接收消息 
{MessageBox.Show( "主窗体已收到消息: " + Message);}

子窗体测试:

复制代码 代码如下:
if (this.SendTo != null) this.SendTo( "主窗体收到了吗? ");

【第四种方法:】

通过引用:

下例演示怎样通过引用类型实现你的功能:
子窗体中定义:

复制代码 代码如下:
protected MainForm ParentFrom = null;//主窗体

新构造函数:

public ChildForm(MainForm parent) 
{ 
InitializeComponent();
this.ParentFrom = parent;//引用 
}

主窗体中某Click:

ChildForm frm = new ChildForm(this); 
frm.ShowDialog(this);

子窗体测试:

void ...Click(....) 
{ 
this.Text = "测试引用 "; 
if (this.ParentFrom != null) this.ParentFrom.Text += "- " + this.Text;//....... 
}

希望本文所述对大家的C#程序设计有所帮助。

上一篇:C#及WPF获取本机所有字体和颜色的方法

栏    目:C#教程

下一篇:C#禁止textbox复制、粘贴、剪切及鼠标右键的方法

本文标题:C#实现子窗体与父窗体通信方法实例总结

本文地址:https://www.xiuzhanwang.com/a1/C_jiaocheng/6976.html

网页制作CMS教程网络编程软件编程脚本语言数据库服务器

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:835971066 | 邮箱:835971066#qq.com(#换成@)

Copyright © 2002-2020 脚本教程网 版权所有