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