如何将值从子级传递回父级表单?我有一个想传递给 parent 的字符串。

我使用以下方法启动了 child :

FormOptions formOptions = new FormOptions();
formOptions.ShowDialog();

最佳答案

FormOptions上创建一个属性(或方法),例如GetMyResult:

using (FormOptions formOptions = new FormOptions())
{
    formOptions.ShowDialog();

    string result = formOptions.GetMyResult;

    // do what ever with result...
}

关于c# - 如何将值从子级传递回父级表单?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/280579/

10-10 13:17