I'm developing my first WPF application that queries a database and shows some records of some tables in TabControl
if one or more fields of these records not satisfy certain condition.
I have a DataTable
as data source and I use a DataGrid
to show results (i.e. the wrong records). I'd like to use ToolTip
on DataGridCell
to indicate why a field is considered wrong. There's a way to iterate over the DataGridRow
and the DataGridCell
so that I can set dynamic ToolTip
for every specific field?
Thanks in advance.