我有一个UltraGrid
绑定到DataTable
具有两列(键、值)的 a 。我在 DataTable 中添加了 10 行,现在第 11 行的 Value 列中有一个 URL。URL 值添加得很好,但它不像超链接那样工作。要将其作为超链接工作,我需要如何将此行添加到 UltraGrid 中?我的代码:
DataTable dt = new DataTable();
dt.Columns.Add("Key", typeof(string));
dt.Columns.Add("Value", typeof(string));
ultraGrid.DataSource = dt;
foreach (KeyValuePair<string, string> kvp in dictionary)
{
dt.Rows.Add(kvp.Key, kvp.Value);
}
// Adding the row which has the URL value.
string url = "SomeURL";
Uri hyperLink = new Uri(url);
dt.Rows.Add("Click this", hyperLink);