private void GridEnterCell(object sender, DataGridViewCellEventArgs e) { if (!gridFilling) { StyleFunctions.HighlightRow((DataGridView)sender, this.GridTheme, e.RowIndex); } }
private void DataGridHistory_CellEnter(object sender, DataGridViewCellEventArgs e) { if (!gridFilling) { StyleFunctions.HighlightRow(DataGridHistory, GridTheme, e.RowIndex); } }
private void ResultGrid_CellEnter(object sender, DataGridViewCellEventArgs e) { if (!gridIsFilling) { StyleFunctions.HighlightRow(ResultGrid, GridTheme, e.RowIndex); } }
private void SibiResultGrid_CellEnter(object sender, DataGridViewCellEventArgs e) { if (!gridFilling && this.Visible) { StyleFunctions.HighlightRow(SibiResultGrid, GridTheme, e.RowIndex); } }