0

我在那个 GridView 中有一个 Gridview 和一个 RepositoryItemGridLookUpEdit 我想在 RepositoryItemGridLookUpEdit 中显示一个 CustomDisplayText

private void rgluePerson_CustomDisplayText(object sender, DevExpress.XtraEditors.Controls.CustomDisplayTextEventArgs e)
        {
            var person = rgluePerson.GetRowByKeyValue(e.Value) as Person;
            var name = person.Name;
            var surname = person.Surname;
            e.DisplayText = name + ", " + surname;
            }
        }

问题是人名取决于同一行中的另一个单元格(在主 Gridview 中),我不知道如何处理当前的 Gridview 行(当前行不起作用,因为我需要该行正在处理)......我不能使用gridView事件因为它会改变单元格值,但我想改变文本值。有谁知道该怎么做?

4

1 回答 1

1

您无法获取CustomDisplayText事件正在处理的行,因为没有包含当前行的此类字段或属性。您只能将此事件用于焦点行。为此,您必须检查发件人是否为以下类型GridLookUpEdit

private void rgluePerson_CustomDisplayText(object sender, CustomDisplayTextEventArgs e)
{
    if (!(sender is GridLookUpEdit))
        return;

    var anotherCellValue = gridView1.GetFocusedRowCellValue("AnotherCellFieldName");

    //Your code here

    e.DisplayText = yourDisplayText;        
}

对于未聚焦的行,您只能使用ColumnView.CustomColumnDisplayText事件:

private void gridView1_CustomColumnDisplayText(object sender, CustomColumnDisplayTextEventArgs e)
{
    if (e.Column.ColumnEdit != rgluePerson)
        return;

    var anotherCellValue = gridView1.GetListSourceRowCellValue(e.ListSourceRowIndex, "AnotherCellFieldName");

    //Your code here

    e.DisplayText = yourDisplayText; 
}
于 2014-11-05T04:24:55.543 回答