Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
15
ListView scrolls after selection
posted

I have UltraListView v18.2. If I select an item and immediately scroll away, so the item is not in view, after certain delay (1 sec?) the list view scrolls back to the item.

How can I disable this behavior?

protected override void OnLoad(EventArgs e)
{
    base.OnLoad(e);

    ultraListView1.View = UltraListViewStyle.Details;
    ultraListView1.ViewSettingsDetails.FullRowSelect = true;
    ultraListView1.Items.AddRange(new[]
    {
        // Items
    });
}

1374.WindowsFormsApp1.zip