现在的位置: 首页 > 综合 > 正文

UltraGrid中绑定UltraTextEditor在AfterEditorButtonCloseUp事件中获得所属UltraGridCell

2014年01月19日 ⁄ 综合 ⁄ 共 128字 ⁄ 字号 评论关闭
private  void AfterEditorButtonCloseUp(object sender, EditorButtonEventArgs e)
{
      if (e.Context != null)
      {
            var cell = e.Context as UltraGridCell;
      }
}

抱歉!评论已关闭.