2 instantiations of DataGridViewImageCell
System.Windows.Forms (2)
winforms\Managed\System\WinForms\DataGridViewImageCell.cs (1)
284dataGridViewCell = new DataGridViewImageCell();
winforms\Managed\System\WinForms\DataGridViewImageColumn.cs (1)
36: base(new DataGridViewImageCell(valuesAreIcons))
27 references to DataGridViewImageCell
System.Windows.Forms (27)
winforms\Managed\System\WinForms\DataGridViewCell.cs (1)
5167this.owner is DataGridViewImageCell ||
winforms\Managed\System\WinForms\DataGridViewImageCell.cs (7)
28private static Type cellType = typeof(DataGridViewImageCell); 279DataGridViewImageCell dataGridViewCell; 290dataGridViewCell = (DataGridViewImageCell)System.Activator.CreateInstance(thisType); 1009DataGridViewImageCell imageCell = this.Owner as DataGridViewImageCell; 1045DataGridViewImageCell dataGridViewCell = (DataGridViewImageCell)this.Owner;
winforms\Managed\System\WinForms\DataGridViewImageColumn.cs (19)
42defaultCellStyle.NullValue = DataGridViewImageCell.ErrorIcon; 46defaultCellStyle.NullValue = DataGridViewImageCell.ErrorBitmap; 64if (value != null && !(value is System.Windows.Forms.DataGridViewImageCell)) 121DataGridViewImageCell dataGridViewCell = dataGridViewRow.Cells[this.Index] as DataGridViewImageCell; 174private DataGridViewImageCell ImageCellTemplate 178return (DataGridViewImageCell) this.CellTemplate; 215DataGridViewImageCell dataGridViewCell = dataGridViewRow.Cells[this.Index] as DataGridViewImageCell; 254DataGridViewImageCell dataGridViewCell = dataGridViewRow.Cells[this.Index] as DataGridViewImageCell; 265(Bitmap) this.DefaultCellStyle.NullValue == DataGridViewImageCell.ErrorBitmap) 267this.DefaultCellStyle.NullValue = DataGridViewImageCell.ErrorIcon; 271(Icon) this.DefaultCellStyle.NullValue == DataGridViewImageCell.ErrorIcon) 273this.DefaultCellStyle.NullValue = DataGridViewImageCell.ErrorBitmap; 306DataGridViewImageCell templateCell = this.CellTemplate as DataGridViewImageCell; 321defaultNullValue = DataGridViewImageCell.ErrorIcon; 325defaultNullValue = DataGridViewImageCell.ErrorBitmap;