2

我是使用 Xceed Grid for .NET 的新手。在 .NET 中有固定的焦点,但在 Xceed 上没有。你能帮我如何得到同样的吗?

4

1 回答 1

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 将使 DataRow 位于 GridControl 视图的顶部。

于 2011-10-19T19:22:32.740 回答