如果数量单元格中的值已更新,我正在尝试更改兄弟单元格(天)的值。问题是我不确定如何访问日间单元。这是我到目前为止所拥有的。
private void UltraGridEdit_AfterCellUpdate(object sender, CellEventArgs e)
{
if(e.Cell.Column.PropertyDescriptor.DisplayName.Equals("Amount"))
{
UltraGridHsaContributionEdit.ActiveRow.Band.Columns["StartDate"].?
}
}