C# でたくさんの linkLabels を生成します。私が望むのは、textBox1 に URL を入力することです。これは、linkLabel ごとに異なります。動的イベントを生成するにはどうすればよいですか? これは例です:
foreach (var node in nodes)
{
HtmlAttribute att = node.Attributes["href"];
HtmlAgilityPack.HtmlDocument tempDoc = new HtmlAgilityPack.HtmlDocument();
tempDoc.LoadHtml(node.InnerHtml);
var tempNode = tempDoc.DocumentNode.SelectSingleNode("//img[@alt]");
HtmlAttribute tempAtt = tempNode.Attributes["alt"];
LinkLabel ll = new LinkLabel();
ll.Location = new Point(20, 20 * i);
ll.Text = tempAtt.Value;
this.Controls.Add(ll);
i++;
}
ノードテキストは である必要がtempAtt.Value
あり、クリックすると textBox1 が満たされる必要がありますatt.Value