如何在同步分组网格的单元格中设置光标位置?

时间:2013-09-19 11:11:45

标签: c# syncfusion

我正在使用syncfusion控件开发一个Windows应用程序。我有一个网格分组网格,如果用户单击单元格中的任何位置,我想将光标位置设置为文本的末尾。我怎么能这样做?

1 个答案:

答案 0 :(得分:0)

private void grd_TableControlCurrentCellChanged(object sender, GridTableControlEventArgs e)
{
   GridDropDownGridListControlCellRenderer cr = 
      gcc.Renderer as GridDropDownGridListControlCellRenderer;
          if (cr != null)
          {
              cr.TextBox.SelectionStart = cr.TextBox.TextLength;
              cr.TextBox.SelectionLength = 0;
          }
}