I have WinForms application with scroll bar controls, I need to change the appearance of these scrollbars.
Is there any way to do it except creating scroll bar control from scratch? I cannot use WPF because targeting .NET 2.0.
|
I have WinForms application with scroll bar controls, I need to change the appearance of these Is there any way to do it except creating scroll bar control from scratch? I cannot use WPF because targeting .NET 2.0. |
||||
|
|
|
From what I remember the only way to do something like this would be to inherit from the standard control and then override OnPaint() method. In .NET 2.0 it wasn't possible to do it any other way. In case you change your mind and decide to go down the custom control path here is a great example from CodeProject > http://www.codeproject.com/Articles/14801/How-to-skin-scrollbars-for-Panels-in-C Hope this helps. |
|||
|
|
There is a way, however it may be hard to keep the proper positions of scrollbar track and buttons. You can start from here, anyway. |
|||
|
|