How do I pass a value from a child back to the parent form? I have a string that I would like to pass back to the parent.
I launched the child using:
FormOptions formOptions = new FormOptions();
formOptions.ShowDialog();
Many thanks
|
3
|
|
|
|
|
|
Use public property of child form
Use events
Use public property of main form
Use object Control.Tag; This is common for all controls public property which can contains a System.Object. You can hold there string or MyClass or MainForm - anything!
|
||
|
|
|
|
I think the easiest way is to use the Tag property in your FormOptions class set the Tag = value you need to pass and after the ShowDialog method read it as
|
|||
|
|
|
|
I had this problem a while ago. I ended up using an event.
It gave me better control over what could be returned. |
||
|
|
|
|
You can also create an overload of ShowDialog in your child class that gets an out parameter that returns you the result.
|
|||
|
|
|
If you're just using formOptions to pick a single value and then close, Mitch's suggestion is a good way to go. My example here would be used if you needed the child to communicate back to the parent while remaining open. In your parent form, add a public method that the child form will call, such as
Next, when you need to launch the child window from the parent, use this code:
In the child form, use this code to pass a value back to the parent:
The code in this example would be better used for something like a toolbox window which is intended to float above the main form. In this case, you would open the child form (with .TopMost = true) using .Show() instead of .ShowDialog(). A design like this means that the child form is tightly coupled to the parent form (since the child has to cast its owner as a ParentForm in order to call its NotifyMe method). However, this is not automatically a bad thing. |
|||
|
|
|
|
You can also create a public property.
Then you can get it with:
|
||||
|
|
|
Many ways to skin the cat here and @Mitch's suggestion is a good way. If you want the client form to have more 'control', you may want to pass the instance of the parent to the child when created and then you can call any public parent method on the child. |
||
|
|
|
Create a property (or method) on FormOptions, say GetMyResult:
|
|||
|
|