这是一些接受字典的方法。
public void Display(Dictionary<string, string> feeds)
{
for (int i = 0; i < 5; i++)
{
int x = i + 1;
string numberOfLable = "linkLabel" + x;
var l = Controls.Find(numberOfLable, true).First() as LinkLabel;
string text = feeds.ElementAt(i).Key;
l.Text = text;
//TO DO add click event for link label
//that display value from Dictionary
}
}
如何添加如果单击 linkLabel[i],则在 textBox 中将显示字典值的代码?