Пример #1
0
 private void GridEnterCell(object sender, DataGridViewCellEventArgs e)
 {
     if (!gridFilling)
     {
         StyleFunctions.HighlightRow((DataGridView)sender, this.GridTheme, e.RowIndex);
     }
 }
Пример #2
0
 private void DataGridHistory_CellEnter(object sender, DataGridViewCellEventArgs e)
 {
     if (!gridFilling)
     {
         StyleFunctions.HighlightRow(DataGridHistory, GridTheme, e.RowIndex);
     }
 }
Пример #3
0
 private void ResultGrid_CellEnter(object sender, DataGridViewCellEventArgs e)
 {
     if (!gridIsFilling)
     {
         StyleFunctions.HighlightRow(ResultGrid, GridTheme, e.RowIndex);
     }
 }
Пример #4
0
 private void SibiResultGrid_CellEnter(object sender, DataGridViewCellEventArgs e)
 {
     if (!gridFilling && this.Visible)
     {
         StyleFunctions.HighlightRow(SibiResultGrid, GridTheme, e.RowIndex);
     }
 }