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