2 writes to ShowCellToolTips
System.Windows.Forms.UI.IntegrationTests (2)
DataGridViewTests.cs (2)
25dataGridView.ShowCellToolTips = true; 53dataGridView.ShowCellToolTips = true;
8 references to ShowCellToolTips
System.Windows.Forms (8)
System\Windows\Forms\Controls\DataGridView\DataGridView.cs (4)
3778if (!ShowRowErrors && !ShowCellToolTips) 3918if (value && !ShowCellErrors && !ShowCellToolTips) 3925if (!value && !ShowCellErrors && !ShowCellToolTips) 3933if (!value && (ShowCellErrors || ShowCellToolTips))
System\Windows\Forms\Controls\DataGridView\DataGridView.Methods.cs (3)
3288return string.IsNullOrEmpty(ToolTipPrivate) && ShowCellToolTips; 14569if (CurrentCell is not null && (ShowCellToolTips || (ShowCellErrors && !string.IsNullOrEmpty(CurrentCell?.ErrorText)))) 15205if (CurrentCell is not null && (ShowCellToolTips || (ShowCellErrors && !string.IsNullOrEmpty(CurrentCell.ErrorText))))
System\Windows\Forms\Controls\DataGridView\DataGridViewCell.cs (1)
2702if (!DataGridView.ShowCellToolTips)