Okay so in my DragDropManager I have set:
DragDropEffects.Scroll
as an allowed effect but for some reason it’s not working properly. It still is not scrolling at all when I am trying to scroll. Could someone please explain to me properly about this.
I am trying to use this while dragging my categories around.
I have checked the MSDN but it is really uninformative on what the feature actually does and how to use it.
I am sorry if this question is silly but I hope someone can help me out.
Two solutions can be found here. One is using
SendMessage, the other is pure .NET code.http://www.dotnet247.com/247reference/msgs/16/81341.aspx
(the site seems to be down, archived page can be found here)
Related windows message codes are described here:
ListView onScroll event
My resulting code is below. It is incomplete though in that aspect that I would like it to have ability to detect the existence of vertical and horizontal scrollbars and adjust the bottom and right scroll-trigger areas accordingly.