2011-09-06 67 views

回答

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將在GridControl視圖的頂部有DataRow。

相關問題