Search code examples
c++visual-studio-2010winapitrackbar

c++ win32 change trackbar background color


I have a win32 API, developed in c++ and i can't find any useful information regarding how can i change the background color of a Trackbar component in windows Vista and above?

I am looking for a equivalent to .NET attribute called BackColor.


Solution

  • Winforms implements it by handling WM_CTLCOLORSTATIC for a TrackBar control. The example code in the linked SDK article should do the trick.