0
我有一個DataGridView和句柄事件CellFormatting。它有一個叫做參數:如何從CellFormatting事件中獲取DataGridViewRow?
DataGridViewCellFormattingEventArgs e
隨着
e.RowIndex在裏面。
當我這樣做:
DataGridView.Rows[e.RowIndex]
我從收集正確的行。
但是,當我點擊一列的標題來排序它比其他列而不是默認的一個和用戶DataGridView.Rows [e.RowIndex]我得到不正確的行。
這是因爲行集合不反映DataGridView中行的順序。
那麼如何從DataGridView的RowIndex中獲取屬性DataGridViewRow?