1

UNboundColumn
当在 GridControl 中的 unboundColumn 中输入新值时,我需要 UNboundColumn,相同的值应显示在同一行的下一列中(并且该列不是 unboundCOlumn)

if (e.IsSetData)
            {
                if (e.Column.FieldName == "Total")
                {
                    if (unboundLocalCurriency.ContainsKey(e.ListSourceRowIndex))
                    {
                        unboundLocalCurriency[e.ListSourceRowIndex] = e.Value;
                    }
                    else
                    {
                        unboundLocalCurriency.Add(e.ListSourceRowIndex, e.Value);
                    }
                }

            if (e.IsGetData)
            {
                if (e.Column.FieldName == "Total")
                {
                    if (unboundLocalCurriency.ContainsKey(e.ListSourceRowIndex))
                    {
                        e.Value = unboundLocalCurriency[e.ListSourceRowIndex];
                    }
                }

            }
4

1 回答 1

1

您可以尝试以下方法:

首先命名列withFieldName="Total"类型UNbound,如下面的代码:

<dxg:GridColumn x:Name="GrdColLocalAmount" Header="Local Amount" FieldName="Total" UnboundType="Decimal" VisibleIndex="4">
    <dxg:GridColumn.EditSettings>
        <dxe:TextEditSettings DisplayFormat="" MaskType="Numeric" Mask="###,###,###.0000000000;(###,###,###.0000000000)" />
    </dxg:GridColumn.EditSettings>
/dxg:GridColumn>

CellValueChanging在事件中进行更改。

于 2016-06-16T12:57:46.367 回答