C#中界面传值的实现

C#中实现界面的值传递有好几种方法,最基本是通过.NET的消息机制,最常用的使用委托或传递实例。

委托实现。

具体例子如下:

想法:

点击Form1的button1,弹出Form2;在Form2的TextBox输入文本,点击Form2的button1,将文本值返回值Form1的TextBox中。

实现如下:

     C#中界面传值的实现 C#中界面传值的实现


    C#中界面传值的实现  C#中界面传值的实现

      

具体实现代码如下:---Form1的具体实现


public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            Form2 form2 = new Form2();
            //第三步:初始化事件
            form2.setFormTextValue += new setTextValue(form2_setFormTextValue);
            form2.Show();
        }

        void form2_setFormTextValue(string textValue)
        {
            //具体实现。
            this.textBox1.Text = textValue;
        }
    }
Form2的具体实现:
public partial class Form2 : Form
    {
        //第二步:声明一个委托类型的事件
        public event setTextValue setFormTextValue;
        
        public Form2()
        {
            InitializeComponent();
        }


        private void button1_Click(object sender, EventArgs e)
        {
            //第四步:准备相关数据。
            setFormTextValue(this.textBox1.Text);
        }
    }

    // 第一步:声明一个委托。(根据自己的需求)
    public delegate void setTextValue(string textValue);



其实这个就是event与delegate的基本知识,应该好好打好基础啊!!!-----对应E:\workspace\NETMessage



你可能感兴趣的:(delegate,event,数值传递)