hi, i was wondering how does yahoo messenger have that look... if some 1 of you have looked at it ... it have custom color scrollbars... nice tabcontrols... it have lot of stuff cuztomized... and i'd like to know how they did it.... i dont think they created the whole controls or did they
for example how did they change the color of the title bar to purple ....
hope some1 know about this
thx
mig16

Cuztomize Win Form look
Reiner7
Owner draw is a property that means the control does not draw itself at all. Then you need to handle the paint event, and in there, you need to draw your control. It's not a trivial task. It's also possible that some things you want, like background color, are exposed as properties so you can set them without having to owner draw the entire control.
Lytse Sippe
Most controls can be set to owner drawn, then you write the code to draw them however you like.
JoeGeeky
mig16