For a Visual Studio Add-In to GP, the AlternatingRowsDefaultCellStyle property is having now effect on the window. Does the project just override this property for a GP Add-in?
In addition, I am currently looping through the rows in the datagridview and setting a row color as a warning given a certain condition is true. What I want to do at a later stage is change the row color back to the default (with alternating colors) when the condition is no longer met. While I can do this :
foreach (DataGridViewRow row in dgv_Transfer.Rows)
{
if (row.Cells["paintFlag"].Value.ToString() == "1")
row.DefaultCellStyle.BackColor = Color.Yellow;
else
row.DefaultCellStyle.BackColor = DefaultBackColor;
}
Using DefaultBackColor in the else condition sets every row back to a light grey, without any alternating row colors - it does not get it back to the default while/light blue the project demands when the control is first generated.
Any thoughts?
*This post is locked for comments