Wx.ListCtrl and column header prompts

I am looking for a way to show hints when a user hovers over the wx.ListCtrl column header, is this possible?
I tried to bind wx.EVT_MOTION, but it looks like it only works for list items, not headers. Am I doing something wrong?

Thanks in advance!

(wxPython 2.8.9.1 on Xubuntu 9.04)

+3
source share
1 answer

I do not think this is possible at the moment, EVT_MOTION only collects coordinates via GetPosition (), when you are in the list itself, the columns do not seem to register the coordinates when you hover over them.

, -, wx.lib.agw.UltimateListCtrl, wxpython, , / .

+1

Source: https://habr.com/ru/post/1743826/


All Articles