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
Hello David,
This is the default behavior of he control. The developer explained it to this public post.
So if you dont scroll withing a sec there scrollbar wount jump t the top , because item would want it to be brought as fully into view as possible. after a sec scrollbar wont jump to the the top. The control was patterned after the Windows XP Explorer, which does the same thing
https://ko.infragistics.com/community/forums/f/ultimate-ui-for-windows-forms/14981/ultralistview-jump-columns-when-click