trackbar with transparent background

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Does anyone have a workaround on how to make a trackbar have a transparent
background? I remember seeing one once but I cant find it any more
Thanks
Andrew
 
The default BackColor for TrackBar is "Control" - The TrackBar doesnt support
BackColor==Transparent
Andrew
 
Thanks - I ended up writing my own workaround anyway - its actually not that
hard and would have been pretty easy to have fixed this in the actual trackbar

The trick is to derive a class from System.Windows.Forms.TrackBar, override
WndProc and implement the WM_PAINT message yourself
Andrew
 
Back
Top