中文字幕日韩精品一区二区免费_精品一区二区三区国产精品无卡在_国精品无码专区一区二区三区_国产αv三级中文在线

C#中窗體間常用的傳值方式有哪些

這篇文章主要為大家展示了“C#中窗體間常用的傳值方式有哪些”,內(nèi)容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學(xué)習(xí)一下“C#中窗體間常用的傳值方式有哪些”這篇文章吧。

為鎮(zhèn)海等地區(qū)用戶提供了全套網(wǎng)頁設(shè)計制作服務(wù),及鎮(zhèn)海網(wǎng)站建設(shè)行業(yè)解決方案。主營業(yè)務(wù)為成都網(wǎng)站設(shè)計、成都做網(wǎng)站、鎮(zhèn)海網(wǎng)站設(shè)計,以傳統(tǒng)方式定制建設(shè)網(wǎng)站,并提供域名空間備案等一條龍服務(wù),秉承以專業(yè)、用心的態(tài)度為用戶提供真誠的服務(wù)。我們深信只要達(dá)到每一位用戶的要求,就會得到認(rèn)可,從而選擇與我們長期合作。這樣,我們也可以走得更遠(yuǎn)!

前言

窗體間的傳值,最好使用委托方式傳值,開始之前,我們先來說一下委托與事件的關(guān)系。

委托:是一個類。

事件:是委托類型的一個特殊實例,只能在類的內(nèi)部觸發(fā)執(zhí)行。

首先創(chuàng)建2個窗體,這里我們以form1為發(fā)送窗體,form2為接收窗體

form1窗體

C#中窗體間常用的傳值方式有哪些

form2窗體

C#中窗體間常用的傳值方式有哪些 

方式一(最簡單的方式)

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 事件的方式實現(xiàn)窗體間傳值
{
 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)
 {
  //對象內(nèi)部的,字段或者元素屬性最好不要直接讓外部直接訪問
  //最好是通過,設(shè)置的方法來控制一下
  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 事件的方式實現(xiàn)窗體間傳值
{
 public partial class Form2 : Form
 {
  public Form2()
  {
   InitializeComponent();
  }
  public void SetTxt(string txt)
  {
   this.txtMsg.Text = txt;
  }
 }
}

方式二(委托方式)

注:委托不熟悉的寶寶們,請自行查閱Func與Action,以及delegate三者區(qū)別,這里我們用系統(tǒng)內(nèi)置的委托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 事件的方式實現(xiàn)窗體間傳值
{
 public partial class Form1 : Form
 {
  public Form1()
  {
   InitializeComponent();
  }
  //定義委托
  public Action<string> afterMsgSend { get; set; }
  private void Form1_Load(object sender, EventArgs e)
  {
   Form2 f2 = new Form2();
   afterMsgSend += f2.SetTxt; //給系統(tǒng)內(nèi)置的委托注冊事件
   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 事件的方式實現(xiàn)窗體間傳值
{
 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 事件的方式實現(xiàn)窗體間傳值
{
 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 事件的方式實現(xiàn)窗體間傳值
{
 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 事件的方式實現(xiàn)窗體間傳值
{
 public partial class Form2 : Form
 {
  public Form2()
  {
   InitializeComponent();
  }
  public void AfterTxtChange(object sender,EventArgs e)
  {
   //拿到父窗體傳來的文本,強(qiáng)轉(zhuǎn)數(shù)據(jù)類型
   TextBoxMsgChangeEventArg arg = e as TextBoxMsgChangeEventArg;
   this.SetTxt(arg.Text);
  }
 }
}

以上是“C#中窗體間常用的傳值方式有哪些”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!

新聞名稱:C#中窗體間常用的傳值方式有哪些
網(wǎng)頁URL:http://www.rwnh.cn/article38/jscspp.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站改版網(wǎng)站制作、軟件開發(fā)、小程序開發(fā)、網(wǎng)站建設(shè)品牌網(wǎng)站制作

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

h5響應(yīng)式網(wǎng)站建設(shè)
潮州市| 莆田市| 广平县| 壶关县| 南召县| 泸西县| 玛多县| 资源县| 湘乡市| 林甸县| 黑龙江省| 班戈县| 怀远县| 黄浦区| 井冈山市| 阿瓦提县| 武平县| 宕昌县| 洮南市| 鄂伦春自治旗| 布拖县| 剑阁县| 台南县| 延庆县| 朔州市| 离岛区| 武夷山市| 浮山县| 天门市| 镇雄县| 安宁市| 榆林市| 宜黄县| 富平县| 安岳县| 新化县| 东阿县| 武宣县| 乐亭县| 孝感市| 苏尼特左旗|