I have a TrackBar control on a TabPage inside a TabControl. The background of the TrackBar is being drawn in grey while the TabPage is being drawn as white. There is no way to set the BackColor property of the TrackBar to transparent, and I can't override the drawing because there is no DrawMode property for the TrackBar. What options do I have to make the TrackBar fit in? Why doesn't it support visual styles?
|
feedback
|
|
You might want to look at the TransparentTrackBar project on CodePlex. | |||
feedback
|
|
Simple
I also faced this (needed a transparent-background trackbar on a tab-control, that will work with both visualstyles enabled and disabled). And this worked for me. | ||||
|
feedback
|
|
Wouldn't interfere here, but neither of the above suggestions worked for me. What did the trick were the following lines:
So I basically eliminate the alpha channel from the background color. Still have to test this with Vista and Win 7, though. | |||
|
feedback
|