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];
}
}
}