Individual Tooltip on each ColumnHeader on a ListView
C#
1
Posts
1
Posters
0
Views
1
Watching
-
I'm trying to figure out a way to set a tooltip for each individual ColumnHeader on a ListView. Unfortunately, ListView can't extend ColumnHeader by default, at least that's what
ToolTip.CanExtend(object)
reports when I try to run it on an instance of ColumnHeader. I was wondering if anyone could point me in the right direction for this. After doing a Google search I found a few message board postings where WndProc was overloaded on the ListView control butall were too vague or used types they didn't define. I know column headers in DataGridView are able to handle ToolTips so I'm going to take a look at that via reflector. Hopefully, that'll shed some light on what I need to do. -JC