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();
|
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:
|
||||
|
|
|
Create a property (or method) on
|
||||
|
|
|
You can also create a public property.
Then you can get it with:
|
|||||
|
|
|
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 an overload of ShowDialog in your child class that gets an out parameter that returns you the result.
|
|||||
|
|
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!
|
|||
|
|
|
For Picrofo EDY It depends, if you use the |
||||
|
|
|
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. |
|||||
|
|
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
|
|||||
|
|
When you use the |
||||
|