Пример #1
0
 //
 // Sweep
 //
 public static void sweep(DGVSyncedGrid g)
 {
     if (g != null)
     {
         g.ea.clearEvents();
     }
 }
Пример #2
0
        public DGVSyncedSelectedCell(DGVSyncedGrid g, DataGridViewCell c)
        {
            this.g = g;
            this.c = c;

            // Column Index
            this.columnIndex = c.ColumnIndex;

            // Row index
            this.rowIndex = this.g.rowSource(c.RowIndex);
        }