2 writes to ShowCellToolTips
System.Windows.Forms.UI.IntegrationTests (2)
DataGridViewTests.cs (2)
26
dataGridView.
ShowCellToolTips
= true;
105
dataGridView.
ShowCellToolTips
= true;
8 references to ShowCellToolTips
System.Windows.Forms (8)
System\Windows\Forms\Controls\DataGridView\DataGridView.cs (4)
3785
if (!ShowRowErrors && !
ShowCellToolTips
)
3925
if (value && !ShowCellErrors && !
ShowCellToolTips
)
3932
if (!value && !ShowCellErrors && !
ShowCellToolTips
)
3940
if (!value && (ShowCellErrors ||
ShowCellToolTips
))
System\Windows\Forms\Controls\DataGridView\DataGridView.Methods.cs (3)
3285
return string.IsNullOrEmpty(ToolTipPrivate) &&
ShowCellToolTips
;
14566
if (CurrentCell is not null && (
ShowCellToolTips
|| (ShowCellErrors && !string.IsNullOrEmpty(CurrentCell?.ErrorText))))
15202
if (CurrentCell is not null && (
ShowCellToolTips
|| (ShowCellErrors && !string.IsNullOrEmpty(CurrentCell.ErrorText))))
System\Windows\Forms\Controls\DataGridView\DataGridViewCell.cs (1)
2702
if (!DataGridView.
ShowCellToolTips
)