我有一个 FlowLayoutPanel 包含未指定数量的标签,当我双击其中一个时,将出现一个包含TextBox和Button的新表单,代码如下:
foreach (Label lb in FlowLayoutPanel1.Controls)
{
lb.MouseDoubleClick+=new MouseEventHandler(lb_MouseDoubleClick);
}
private void lb_MouseDoubleClick(object sender, MouseEventArgs e)
{
NewForm form = new NewForm();
form.ShowDialog();
((Label)sender).Text = ...;//I want get text from TextBox of the NewForm here
}
我想从NewForm 的TextBox中获取 Text 并将 Text 分配给当用户单击 Form 的Button时调用 Form 的对象,我不知道如何使用委托来执行此操作,请帮忙!感谢您阅读本文!