I need to create a grid that looks like this:
In the upper right there is an X that need to be a hyperlink which fires a C# event. I'm preparing the data for the grid like this:
foreach (var item in data)
{
item.Name = $"<html><span style=\"font-size: 10\">{item.Name} {item.Acct}</span><p>{item.TicklerDesc}</html>";
item.TicklerDate = $"<html><p></p><span style=\"font-size: 8\">{string.Concat(Enumerable.Repeat(" ", 22))}X<p></p>{item.TicklerDate}</span></html>";
}
As it stands now the X is useless. The questions is: How do I make it a hyperlink (or fake equivalent) so that I can fire a C# event?
Thanks
Carl