I have a DataGridView in VB.Net (.NET Framework 4.0). I bind the data to it via "XXX.DataSource" a list of instances of my own class to this datagridview. My Class has public properties, which will automatically fill in the right cells of the row, because I am using the binding-mechanism.
Now, I have one cell per row (=one column), where I want to set the tooltip. The content of the tooltip-text is also in the instance of my class (e.g. additional property, function, etc...).
How can I use data of a binded object to set a tooltip in a datagridview-cell?