我在c#中生成了一堆linkLabels。我想要的是用一个URL填充textBox1,这与每个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
答案 0 :(得分:2)
你不能直接将dat传递给事件,你必须从处理程序内部以其他方式获取它。
foreach (var node in nodes)
{
...
LinkLabel ll = new LinkLabel();
...
ll.Click += MyLabelClickHandler;
this.Controls.Add(ll);
i++;
}
void MyLabelClickHandler(object sender, Eventargs e)
{
senderLabel = sender as LinkLabel;
string text = senderlabel.text;
....
}