回复 11楼xinren063的帖子
代码测试如下:
- void c1flex_PrepareCellForEdit(object sender, C1.WPF.FlexGrid.CellEditEventArgs e)
- {
- var b = e.Editor as Border;
- var tb = b.Child as TextBox;
- tb.SelectionStart = 0;
- tb.SelectionLength = 0;
- }
复制代码
SelectionStart和SelectionLength没有起作用。
然后测试微软标准的SelectionStart和SelectionLength也没有起作用。
所以这条路走不通。
明天帮你尝试其他的解决方案。 |