我是使用Xceed Grid for .NET的新手。在.NET中设置焦点但在Xceed上没有。你能帮我解决一下这个问题吗?
答案 0 :(得分:3)
您可以执行以下操作:
this.gridControl1.CurrentRow = this.gridControl1.DataRows[100];
this.gridControl1.CurrentRow.BringIntoView();
this.gridControl1.FirstVisibleRow = this.gridControl1.CurrentRow;
this.gridControl1.SelectedRows.Add(this.gridControl1.CurrentRow);
在DataRow上调用BringIntoView将让GridControl一直滚动到DataRow所在的位置。将GridControl上的FirstVisibleRow设置为CurrentRow将使GridRow位于GridControl视图的顶部。