Exemplo n.º 1
0
 internal DataGridCellEventArgs(DataGridCell dataGridCell)
 { 
     Debug.Assert(dataGridCell != null); 
     this.ColumnIndex = dataGridCell.ColumnIndex;
     this.RowIndex = dataGridCell.RowIndex; 
     this.Cell = dataGridCell;
 }
Exemplo n.º 2
0
 internal DataGridCellEventArgs(int columnIndex, DataGridCell dataGridCell)
 {
     this.ColumnIndex = columnIndex; 
     this.RowIndex = -1; 
     this.Cell = dataGridCell;
 } 
Exemplo n.º 3
0
 internal DataGridCellEventArgs(int columnIndex, DataGridCell dataGridCell)
 {
     this.ColumnIndex = columnIndex;
     this.RowIndex    = -1;
     this.Cell        = dataGridCell;
 }