Can I set color to the wxListCtrl report header?

BlitzMax Forums/Brucey's Modules/Can I set color to the wxListCtrl report header?

MOBii(Posted 2016) [#1]
Is it possible to set the SetForegroundColour/SetBackgroundColour to the report header: wxListCtrl.InsertColumn

SetForegroundColour and SetBackgroundColour is working for all except the report header

the only information I found for the subject is: https://forums.wxwidgets.org/viewtopic.php?t=14783


Henri(Posted 2016) [#2]
Hi,

it seems that in order to do that you would have to override listcontrols native eventhandler (WinProc) and use ownerdraw style to draw everything yourself which is not an easy task.
Something to this effect:

https://www.codeproject.com/articles/4243/customizing-the-header-control-in-a-listview

-Henri