试图找到一种方法来创建支持多个链接的 DataGridViewCell,如下所示:
我知道这已经被问了一千次了(我花了一天时间梳理它们),但请听我说完。我希望一个单元格包含多个用逗号分隔的链接。我找到了一种使用 LinkLabel 的方法:
var addresses = new List<string>
{
"http://www.example.com/page1",
"http://www.example.com/page2",
"http://www.example.com/page3",
};
var stringBuilder = new StringBuilder();
var links = new List<LinkLabel.Link>();
foreach (var address in addresses)
{
if (stringBuilder.Length > 0) stringBuilder.Append(", ");
// We cannot add the new LinkLabel.Link to the LinkLabel yet because
// there is no text in the label yet, so the label will complain about
// the link location being out of range. So we'll temporarily store
// the links in a collection and add them later.
links.Add(new LinkLabel.Link(stringBuilder.Length, address.Length, address));
stringBuilder.Append(address);
}
// We must set the text before we add the links.
linkLabel1.Text = stringBuilder.ToString();
foreach (var link in links)
{
linkLabel1.Links.Add(link);
}
linkLabel1.AutoSize = true;
linkLabel1.LinkClicked += (s, e) =>
{
MessageBox.Show((string)e.Link.LinkData);
};
我找不到将此 LinkList 添加到 DataGridViewCell 的方法。是否有可能以某种方式将此 LinkLabel 插入 DataGridViewCell 并且仍然可以正常工作?还是可以通过某种方式使用 DataGridViewLinkColumn 以某种方式获得相同的功能?