How to change font color of datagridiew last row C# - CodeProject

PHOTO EMBED

Fri May 13 2022 19:07:16 GMT+0000 (Coordinated Universal Time)

Saved by @javicinhio #csharp

if (dataGridView1.Rows.Count > 0)
           dataGridView1.Rows[dataGridView1.Rows.Count-1].DefaultCellStyle.BackColor = Color.Red;
content_copyCOPY

https://www.codeproject.com/Questions/1123084/How-to-change-font-color-of-datagridiew-last-row-C