Click here to Skip to main content
15,867,308 members
Articles / Programming Languages / C#
Article

Using a delegate to pass data between two forms

Rate me:
Please Sign up or sign in to vote.
4.56/5 (36 votes)
18 Mar 2004 116.1K   3.7K   54   11
Using a delegate to pass data between two forms

Introduction

This code demonstrates how you can pass data from one form to another using a delegate. The advantage of using a delegate is that the form from which you want to send the data, doesn't need to know anything about the form that it's sending its data to. This way, you can reuse the same form in other forms or applications.

Details

This is form 1. From this form we display form 2. And from form 2 we send a TextBox back to form 1.

And the code for form 1:

C#
private void btnForm1_Click(object sender, System.EventArgs e)
{
    // Create an instance of form 2
    Form2 form2 = new Form2();
 
    // Create an instance of the delegate
    form2.passControl = new Form2.PassControl(PassData);
 
    // Show form 2
    form2.Show();
}
 
private void PassData(object sender)
{
    // Set de text of the textbox to the value of the textbox of form 2
    txtForm1.Text = ((TextBox)sender).Text;
}

Form 2 sends the TextBox back to form 1:

C#
public class Form2 : System.Windows.Forms.Form
{
    // Define delegate
    public delegate void PassControl(object sender);
 
    // Create instance (null)
    public PassControl passControl;
 
    private void btnForm2_Click(object sender, System.EventArgs e)
    {
        if (passControl != null)
        {
            passControl(txtForm2);
        {
        this.Hide();
    }
}
Of course, using the delegate, you can not only send back the textbox, but other controls, variables or even the form itself, because they are all objects. I hope this is useful.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
Netherlands Netherlands
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionNull Reference Exception Pin
acezrwild8179-Jun-06 5:29
acezrwild8179-Jun-06 5:29 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.