简体   繁体   中英

How to get DataGridViewRow from CellFormatting event?

I have a DataGridView and handle event CellFormatting. It has a parameter called:

DataGridViewCellFormattingEventArgs e

With

e.RowIndex in it.

When i do:

DataGridView.Rows[e.RowIndex] 

I get proper row from collection.

But when I click at a header of a column to sort it by other column than default one and user DataGridView.Rows[e.RowIndex] I get unproper row.

It is because Rows collection do not reflect order of rows in DataGridView.

So how to get propert DataGridViewRow from RowIndex in DataGridView?

If my understanding is correct, you want to perform formatting for certain rows based on their index in the datasource, not based on the display index. In this case, you can use the DataBoundItem property of the DataGridViewRow. Considering that your datasource is a datatable, this item will be a DataGridViewRow, which has a property called Row, for which you can find the index in your original datasource. See below an example:

DataTable t = new DataTable(); //your datasource
int theIndexIWant = 3;

private void dataGridView1_CellFormatting(object sender, DataGridViewCellFormattingEventArgs e)
{               
    DataRowView row = dataGridView1.Rows[e.RowIndex].DataBoundItem as DataRowView;      

    if (row != null && t.Rows.IndexOf(row.Row) == theIndexIWant)
    {
        e.CellStyle.BackColor = Color.Red;
    }
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM