Example #1
0
 public void SetRegularStatus(DataGridViewRow row, int cellColNum)
 {
     MissedStatus = false;
     RowStyleManager.MakeCellRegularFont(row.Cells[cellColNum]);
 }
 public override void SetRowStyle(DataGridViewRow row)
 {
     RowStyleManager.MakeRegularRowFont(row);
     RowStyleManager.MakeRowBackgroundAsRegular(row);
 }
Example #3
0
 public void SetMissedStatus(DataGridViewRow row, int cellColNum)
 {
     MissedStatus = true;
     RowStyleManager.MakeCellBoldFont(row.Cells[cellColNum]);
 }