我XtraGridView
在我的winform中使用了一个控件。现在我添加了一个RepositoryItemHyperLinkEdit
。但我想根据行数据显示/隐藏每个链接。
我怎样才能做到这一点?
谢谢你的帮助..
我尝试了下一个代码,但它不起作用,单元格不是空的。(“显示链接”部分可以,但 String.Empty 不起作用)
private void xgvGrid_CustomColumnDisplayText(object sender, DevExpress.XtraGrid.Views.Base.CustomColumnDisplayTextEventArgs e)
{
if (e.Column == gcControlField)
{
if (xgvGrid.GetFocusedRowCellValue("ControlField") != null)
{
if (xgvGrid.GetFocusedRowCellValue("ControlField").ToString() == "LINK")
e.DisplayText = "Show link";
else
e.DisplayText = string.Empty;
}
}
}