首页 > Windows开发 > 详细

窗体间的传值-事件

时间:2021-07-07 12:55:44      阅读:18      评论:0      收藏:0      [点我收藏+]

看图了解过程:

技术分享图片

 

 

实现:效果

技术分享图片

 

 代码展示:fromA

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace UI.test
{
    public partial class FormA : Form
    {
        public FormA()
        {
            InitializeComponent();
        }

        private void FormA_Load(object sender, EventArgs e)
        {

        }
        //A窗体中定义一个可以改变自己文本框内容的方法
        private void SetTXTA(string textBoxB)
        {
            textBoxA.Text = textBoxB;
        }
        //打开窗体B按钮
        private void button1_Click(object sender, EventArgs e)
        {
            FormB fromb = new FormB();
            fromb.Show();
            fromb.SetTXTB_Event += SetTXTA;//为B中的事件绑定A中的方法

        }
    }
}

FormB:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace UI.test
{
    public partial class FormB : Form
    {
        public FormB()
        {
            InitializeComponent();
        }

        private void FormB_Load(object sender, EventArgs e)
        {

        }
         //委托: Action<T>表示无返回值的委托类型
         //      Funt<T> 表示有返回值的委托类型
        //定义事件
        public event Action<string> SetTXTB_Event;

        private void button1_Click(object sender, EventArgs e)
        {
            //调用事件:
            SetTXTB_Event(textBoxB.Text);

        }
       
    }
}

 

窗体间的传值-事件

原文:https://www.cnblogs.com/yanghongyan/p/14980476.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!