例如,我有 Form1 和 Form2。Form1 具有公共属性
public IMyCustomType selectedOption;
里面Form1
有comboBox
自定义对象列表。我希望当用户从该组合列表中选择选项到 selectedOption 时填充该值,例如
public IMyCustomType selectedOption;
private void availableChoices_SelectedIndexChanged(object sender, EventArgs e)
{
selectedOption = (IMyCustomType)availableChoices.SelectedItem;
}
在里面Form2
我想创建该选定类型的新实例。如何访问form2
该selectedOption
属性并使用该值创建新实例?