2
我是使用Xceed Grid for .NET的新手。在.NET中有設置焦點,但不在Xceed上。你能幫我解釋一下嗎?如何將焦點設置爲Xceed Grid for .NET中的特定行
我是使用Xceed Grid for .NET的新手。在.NET中有設置焦點,但不在Xceed上。你能幫我解釋一下嗎?如何將焦點設置爲Xceed Grid for .NET中的特定行
你可以做到以下幾點:
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將在GridControl視圖的頂部有DataRow。