9 instantiations of DataGridCell
System.Windows.Forms (9)
winforms\Managed\System\WinForms\DataGrid.cs (7)
899return new DataGridCell(currentRow, currentCol); 1170this.CurrentCell = new DataGridCell(currentRow, value); 1179CurrentCell = new DataGridCell(value, currentCol); 3244CurrentCell = new DataGridCell(listManager.Position, currentCol); 4101CurrentCell = new DataGridCell(location.row, currentCol); 4167DataGridCell target = new DataGridCell(location.row, location.col); 4684CurrentCell = new DataGridCell(rowNumber, col);
winforms\Managed\System\WinForms\DataGridRow.cs (2)
919return DataGrid.RectangleToScreen(DataGrid.GetCellBounds(new DataGridCell(owner.RowNumber, column))); 1066DataGrid.CurrentCell = new DataGridCell(owner.RowNumber, column);
18 references to DataGridCell
System.Windows.Forms (18)
winforms\Managed\System\WinForms\DataGrid.cs (8)
897public DataGridCell CurrentCell { 3047/// <para>Gets or sets the value of a specified <see cref='System.Windows.Forms.DataGridCell'/>.</para> 3049public object this[DataGridCell cell] { 4167DataGridCell target = new DataGridCell(location.row, location.col); 6419DataGridCell current = this.CurrentCell; 6438/// <para>Gets the <see cref='T:System.Drawing.Rectangle'/> of the cell specified by <see cref='System.Windows.Forms.DataGridCell'/>.</para> 6440public Rectangle GetCellBounds(DataGridCell dgc) { 9179DataGridCell cell = DataGrid.CurrentCell;
winforms\Managed\System\WinForms\DataGridCell.cs (6)
52/// Initializes a new instance of the <see cref='System.Windows.Forms.DataGridCell'/> class. 63/// Gets a value indicating whether the <see cref='System.Windows.Forms.DataGridCell'/> is identical to a second 64/// <see cref='System.Windows.Forms.DataGridCell'/>. 69if (o is DataGridCell) { 70DataGridCell rhs = (DataGridCell)o;
winforms\Managed\System\WinForms\DataGridRow.cs (4)
484DataGridCell current = this.dgTable.DataGrid.CurrentCell; 666protected Brush BackBrushForDataPaint(ref DataGridCell current, DataGridColumnStyle gridColumn, int column) { 680protected Brush ForeBrushForDataPaint(ref DataGridCell current, DataGridColumnStyle gridColumn, int column) { 845DataGridCell cell = DataGrid.CurrentCell;