Windows Forms programming is a great way to create user interfaces. However, one common problem is passing variables between forms. This can be difficult to do without using the ShowDialog() function. In this article, we will show you how to pass variables between forms without using ShowDialog(). ..


Most of the guides out there will tell you that you have to open the second form with ShowDialog(), which blocks the user from doing anything else until they’ve closed the second form window. This won’t work very well for a find/replace dialog, for instance. It also won’t work very well for custom drawn popup forms.

The quick way to pass variables between the forms is using Delegates. You can set an eventhandler for the Closing event of the second form, and handle the event in the first form. This allows you to capture variables before the second form window has closed.

For this exercise, we’re going to assume that we have two forms:

MainForm

OptionsForm

We’re going to further assume that we’ve clicked some sort of button that opens the OptionsForm with a Show() method call. Now let’s take a look at the magic:

 

OptionsForm theform = new OptionsForm();theform.Closing += new CancelEventHandler(theform_Closing);theform.Show();

}

private void theform_Closing(object sender, CancelEventArgs e){

   OptionsForm theform = (OptionsForm)sender;

   // Grab the variable from the options form. The options form should set this variable before it closes, and the variable should be marked as public.   string localvar = theform.thestringvariable;

}

That’s all there is to it.