符合中小企业对网站设计、功能常规化式的企业展示型网站建设
本套餐主要针对企业品牌型网站、中高端设计、前端互动体验...
商城网站建设因基本功能的需求不同费用上面也有很大的差别...
手机微信网站开发、微信官网、微信商城网站...
这篇文章主要为大家展示了“C#中窗体间常用的传值方式有哪些”,内容简而易懂,条理清晰,希望能够帮助大家解决疑惑,下面让小编带领大家一起研究并学习一下“C#中窗体间常用的传值方式有哪些”这篇文章吧。
创新互联网站建设服务商,为中小企业提供成都网站建设、成都网站设计服务,网站设计,网站托管等一站式综合服务型公司,专业打造企业形象网站,让您在众多竞争对手中脱颖而出创新互联。前言
窗体间的传值,最好使用委托方式传值,开始之前,我们先来说一下委托与事件的关系。
委托:是一个类。
事件:是委托类型的一个特殊实例,只能在类的内部触发执行。
首先创建2个窗体,这里我们以form1为发送窗体,form2为接收窗体
form1窗体
form2窗体
方式一(最简单的方式)
form1窗体代码
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace 事件的方式实现窗体间传值 { public partial class Form1 : Form { public Form1() { InitializeComponent(); } public Form2 msgFrm { get; set; } private void Form1_Load(object sender, EventArgs e) { Form2 f2 = new Form2(); msgFrm = f2; f2.Show(); } private void btnSendMsg_Click(object sender, EventArgs e) { //对象内部的,字段或者元素属性最好不要直接让外部直接访问 //最好是通过,设置的方法来控制一下 msgFrm.SetTxt(this.txtMsg.Text); } } }
form2窗体代码
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace 事件的方式实现窗体间传值 { public partial class Form2 : Form { public Form2() { InitializeComponent(); } public void SetTxt(string txt) { this.txtMsg.Text = txt; } } }
方式二(委托方式)
注:委托不熟悉的宝宝们,请自行查阅Func与Action,以及delegate三者区别,这里我们用系统内置的委托Action
form1窗体代码
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace 事件的方式实现窗体间传值 { public partial class Form1 : Form { public Form1() { InitializeComponent(); } //定义委托 public ActionafterMsgSend { get; set; } private void Form1_Load(object sender, EventArgs e) { Form2 f2 = new Form2(); afterMsgSend += f2.SetTxt; //给系统内置的委托注册事件 f2.Show(); } private void btnSendMsg_Click(object sender, EventArgs e) { if (afterMsgSend == null) { return; } afterMsgSend(this.txtMsg.Text); } } }
form2窗体代码
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace 事件的方式实现窗体间传值 { public partial class Form2 : Form { public Form2() { InitializeComponent(); } public void SetTxt(string txt) { this.txtMsg.Text = txt; } } }
方式三(事件方式,更安全哟)
TextBoxMsgChangeEventArg类继承EventArgs代码
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace 事件的方式实现窗体间传值 { public class TextBoxMsgChangeEventArg:EventArgs { public string Text { get; set; } } }
form1窗体代码
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace 事件的方式实现窗体间传值 { public partial class Form1 : Form { public Form1() { InitializeComponent(); } public event EventHandler AfterMsgChange; private void Form1_Load(object sender, EventArgs e) { Form2 f2 = new Form2(); AfterMsgChange += f2.AfterTxtChange; f2.Show(); } private void btnSendMsg_Click(object sender, EventArgs e) { AfterMsgChange(this, new TextBoxMsgChangeEventArg() { Text = this.txtMsg.Text }); } } }
form2窗体
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace 事件的方式实现窗体间传值 { public partial class Form2 : Form { public Form2() { InitializeComponent(); } public void AfterTxtChange(object sender,EventArgs e) { //拿到父窗体传来的文本,强转数据类型 TextBoxMsgChangeEventArg arg = e as TextBoxMsgChangeEventArg; this.SetTxt(arg.Text); } } }
以上是“C#中窗体间常用的传值方式有哪些”这篇文章的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注创新互联成都网站设计公司行业资讯频道!
另外有需要云服务器可以了解下创新互联scvps.cn,海内外云服务器15元起步,三天无理由+7*72小时售后在线,公司持有idc许可证,提供“云服务器、裸金属服务器、高防服务器、香港服务器、美国服务器、虚拟主机、免备案服务器”等云主机租用服务以及企业上云的综合解决方案,具有“安全稳定、简单易用、服务可用性高、性价比高”等特点与优势,专为企业上云打造定制,能够满足用户丰富、多元化的应用场景需求。