Hello,
I need to implement custom scrolling => i need to disable mouse wheel scrolling to be able to handle mouse wheel. Can you please help me how to do this. Is it possible?
I tried to use IsCustomScrollingEnabled but it works only if verticalscrollbar thumb is clicked.
Look at the example please.
http://cid-bf6ef922df39a27b.office.live.com/self.aspx/.Public/CustomScrolling.zip
If I set IsCustomScrollingEnabled = true before
sw.ScrollChanged += new ScrollChangedEventHandler(sw_ScrollChanged);
vertical scrollbar is changed by mouse whell. If I set IscustomScrollingEnabled = true after
sw.ScrollChanged += new ScrollChangedEventHandler(sw_ScrollChanged);
vertical scrollbar is changed by mouse whell but if you click on vertical scrollbar thumb, vertical scrollbar is never changed by mouse whell.
I need second functionality because I have to change vertical scrollbat position myself, but without clicking.
Thank you.
