欧美成人精品手机在线观看_69视频国产_动漫精品第一页_日韩中文字幕网 - 日本欧美一区二区

LOGO OA教程 ERP教程 模切知識交流 PMS教程 CRM教程 開發文檔 其他文檔  
 
網站管理員

C# 主窗體(父窗體)和子窗體間互相傳值

admin
2024年12月27日 7:53 本文熱度 62

前言

在做Winform窗體程序開發的時候,會經常遇到窗體之間相互傳值。假設有下面的一個場景:一個主窗體和一個子窗體,點擊主窗體上面的按鈕給子窗體傳值,并在子窗體上面顯示出來,一般會有如下幾種方式實現:

公共屬性

在子窗體里面定義一個公共的屬性,然后在父窗體里面給公共屬性賦值,這樣可以實現窗體之間傳值,子窗體代碼如下:

子窗體代碼

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 ChildrenForm : Form
    {
        public ChildrenForm()
        {
            InitializeComponent();
        }

        // 定義一個公共屬性,接收傳遞的值
        public string strMessage { get; set; }

        private void ChildrenForm_Load(object sender, EventArgs e)
        {
            // 將接收到的值顯示在窗體上
            this.lblMessage.Text = strMessage;
        }
    }
}

父窗體代碼:

namespace 窗體傳值
{
    public partial class Mian : Form
    {
        public Mian()
        {
            InitializeComponent();
        }

        private void btn_Value_Click(object sender, EventArgs e)
        {
            ChildrenForm child = new ChildrenForm();
            // 給窗體的公共屬性賦值
            child.strMessage = this.txtMessage.Text.Trim();
            // 顯示子窗體
            child.Show();
        }
    }
}

**缺點:屬性需要設置為public,不安全**。

公共方法

子窗體里面定義一個方法,通過調用方法傳值,子窗體代碼如下:

子窗體代碼

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 ChildrenForm1 : Form
    {
        public ChildrenForm1()
        {
            InitializeComponent();
        }

        // 定義屬性為private
        private string strMessage { get; set; }

        /// <summary>
        /// 給私有屬性賦值
        /// </summary>
        /// <param name="strText"></param>
        public void SetText(string strText)
        {
            strMessage = strText;
        }

        private void ChildrenForm1_Load(object sender, EventArgs e)
        {
            // 將接收到的值顯示在窗體上
            this.lblMessage.Text = strMessage;
        }
    }
}

父窗體代碼

namespace 公共方法窗體傳值
{
    public partial class MainForm1 : Form
    {
        public MainForm1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            ChildrenForm1 child = new ChildrenForm1();
            // 給窗體的公共屬性賦值
            child.SetText(this.txtMessage.Text.Trim());
            // 顯示子窗體
            child.Show();
        }
    }
}

缺點:屬性雖然是private的了,但是方法還是public的。

委托

定義一個委托

在主窗體里面定義一個有參無返回值的委托:

// 定義一個有參無返回值的委托
private delegate void SendMessage(string strMessage);

實例化一個此委托類型的事件

// 定義一個委托類型的事件
public event SendMessage sendMessageEvent;

委托與事件的關系,事件相對于委托更安全,更低耦合。委托是一個類型,事件是委托類型的一個實例。

定義要執行的方法

在子窗體里面定義一個給控件賦值的方法:

/// <summary>
/// 給控件賦值的方法
/// </summary>
/// <param name="strValue"></param>
public void SetValue(string strValue)
{
    this.lblMessage.Text = strValue;
}

將方法綁定到事件

frmChild child = new frmChild();
// 將方法綁定到事件上
sendMessageEvent += new SendMessage(child.SetValue);
// 也可以使用下面的簡寫形式
// sendMessageEvent += child.SetValue;
child.Show();

觸發委托

在按鈕的點擊事件里面觸發委托:

if(sendMessageEvent!=null)
{
      sendMessageEvent.Invoke(this.txtMessage.Text.Trim());
}

子窗體代碼:

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 ChildrenForm3 : Form
    {
        public ChildrenForm3()
        {
            InitializeComponent();
        }

        /// <summary>
        /// 給控件賦值的方法
        /// </summary>
        /// <param name="strValue"></param>
        public void SetValue(string strValue)
        {
            this.lblMessage.Text = strValue;
        }
    }
}

父窗體代碼:

namespace 委托傳值
{
    public partial class MainForm2 : Form
    {
        // 定義一個有參無返回值的委托
        public delegate void SendMessage(string strMessage);

        // 定義一個委托類型的事件
        public event SendMessage sendMessageEvent;

        public event Action<string> actionEvent;

        public MainForm2()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            #region 通過委托傳值
            //frmChild child = new frmChild();
            //// 將方法綁定到事件上
            //// sendMessageEvent += new SendMessage(child.SetValue);
            //// 也可以使用下面的簡寫形式
            //sendMessageEvent += child.SetValue;
            //child.Show();
            #endregion

            #region 使用Action
            ChildrenForm3 child = new ChildrenForm3();
            // 將方法綁定到事件上
            actionEvent += child.SetValue;
            child.Show();
            #endregion

            // 使用自定義委托
            //if (sendMessageEvent!=null)
            //{
            //    sendMessageEvent.Invoke(this.txtMessage.Text.Trim());
            //}

            // 使用Action委托
            if (actionEvent != null)
            {
                actionEvent.Invoke(this.txtMessage.Text.Trim());
            }
        }
    }
}

源代碼下載鏈接: https://share.weiyun.com/PSTSZ5VU


該文章在 2024/12/28 12:23:20 編輯過
關鍵字查詢
相關文章
正在查詢...
點晴ERP是一款針對中小制造業的專業生產管理軟件系統,系統成熟度和易用性得到了國內大量中小企業的青睞。
點晴PMS碼頭管理系統主要針對港口碼頭集裝箱與散貨日常運作、調度、堆場、車隊、財務費用、相關報表等業務管理,結合碼頭的業務特點,圍繞調度、堆場作業而開發的。集技術的先進性、管理的有效性于一體,是物流碼頭及其他港口類企業的高效ERP管理信息系統。
點晴WMS倉儲管理系統提供了貨物產品管理,銷售管理,采購管理,倉儲管理,倉庫管理,保質期管理,貨位管理,庫位管理,生產管理,WMS管理系統,標簽打印,條形碼,二維碼管理,批號管理軟件。
點晴免費OA是一款軟件和通用服務都免費,不限功能、不限時間、不限用戶的免費OA協同辦公管理系統。
Copyright 2010-2025 ClickSun All Rights Reserved