While we appreciate comments from our users, please follow our posting guidelines. Have you tried the Cyotek Forums for support from Cyotek and the community?

Styling with Markdown is supported

Original Comment

Motaz Alnuweiri

# Reply

Wow amazing!

Hello and thank you so much for sharing.

You can enable auto scroll when reach the top or bottom of the list:

protected override void OnDragOver(DragEventArgs drgevent) { ...

    // Scroll top or bottom for dragging item
    if (this.InsertionIndex > -1 && this.InsertionIndex < this.Items.Count)
    {
        EnsureVisible(this.InsertionIndex);
    }

    base.OnDragOver(drgevent);

}

Regards, Motaz