Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question

2 Answers

up vote 2 down vote accepted

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.

share|improve this answer
Yeah I should have know better than to say that there is no other way :) – Alex Dec 3 '12 at 12:53
public class MyScrollBar : VScrollBar
{
    public MyScrollBar()
    {
        SetStyle(ControlStyles.UserPaint, true);
    }

    protected override void OnPaint(PaintEventArgs e)
    {
        e.Graphics.DrawRectangle(SystemPens.ControlDark, e.ClipRectangle.Left, e.ClipRectangle.Top, e.ClipRectangle.Width - 1, e.ClipRectangle.Height - 1);
    }
}

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.