vote up 4 vote down star

If a user select all items in a .NET 2.0 ListView, the ListView will fire a SelectedIndexChanged event for every item; rather than firing an event to indicate that the selection has changed

If the user then clicks to select just one item in the list, the ListView will fire a SelectedIndexChagned event for every item that is getting unselected, and then an SelectedIndexChanged event for the single newly selected item; rather than firing an event to indicate that the selection has changed.

If you have code in the SelectedIndexChanged event handler, the program will become pretty unresponsive when you begin to have a few hundred/thousand items in the list.

i've thought about dwell timers, etc.

But does anyone have a good solution to avoid thousands of needless ListView.SelectedIndexChange events, when really one event will do?

flag

55% accept rate
+1, as I'm having this exact issue. – Thanatos Jun 16 at 19:28

11 Answers

vote up 0 vote down

Leave the ListView and all the old controls.

Make DataGridView your friend, and all will be well :)

link|flag
As long as i can use it without databinding – Ian Boyd Jul 7 at 21:30
vote up 0 vote down

Maylon >>>

The aim was never to work with list above a few hundreds items, But... I have tested the Overall user experience with 10.000 items, and selections of 1000-5000 items at one time (and changes of 1000-3000 items in both Selected and Deselected)...

The overall duration of calculating never exceeded 0.1 sec, some of the highest measurements was of 0.04sec, I Found that perfectly acceptable with that many items.

And at 10.000 items, just initializing the list takes over 10 seconds, so at this point I would have thought other things had come in to play, as Virtualization as Joe Chung points out.

That said, it should be clear that the code is not an optimal solution in how it calculates the difference in the selection, if needed this can be improved a lot and in various ways, I focused on the understanding of the concept with the code rather than the performance.

However, if your experiencing degraded performance I am very interested in some of the following:

  • How many items in the list?
  • How many selected/deselected elements at a time?
  • How long does it roughly take for the event to raise?
  • Hardware platform?
  • More about The case of use?
  • Other relevant information you can think of?

Otherwise it ain't easy to help improving the solution.

link|flag
vote up 0 vote down

I recommend virtualizing your list view if it has a few hundred or thousand items.

link|flag
vote up 0 vote down

The timer is the best overall solution.

A problem with Jens's suggestion is that once the list has a lot of selected items (thousands or more), getting the list of selected items starts to take a long time.

Instead of creating a timer object every time a SelectedIndexChanged event occurs, it's simpler to just put a permanent one on the form with the designer, and have it check a boolean variable in the class to see whether or not it should call the updating function.

For example:

bool timer_event_should_call_update_controls = false;

private void lvwMyListView_SelectedIndexChanged(object sender, EventArgs e) {

  timer_event_should_call_update_controls = true;
}

private void UpdateControlsTimer_Tick(object sender, EventArgs e) {

  if (timer_event_should_call_update_controls) {
    timer_event_should_call_update_controls = false;

    update_controls();
  }
}

This works fine if you're using the information simply for display purposes, such as updating a status bar to say "X out of Y selected".

link|flag
vote up 0 vote down

Maybe this can help you to accomplish what you need without using timers:

http://www.dotjem.com/archive/2009/06/19/20.aspx

I Don't like the user of timers ect. As i also state in the post...

Hope it helps...

Ohh i forgot to say, it's .NET 3.5, and I am using some of the features in linq to acomplish "Selection Changes Evaluation" if you can call it that o.O...

Anyways, if you are on an older version, this evaluation has to be done with a bit more code... >.<...

link|flag
vote up 1 vote down

Good solution from Ian. I took that and made it into a reusable class, making sure to dispose of the timer properly. I also reduced the interval to get a more responsive app. This control also doublebuffers to reduce flicker.

  public class DoublebufferedListView : System.Windows.Forms.ListView
  {
     private Timer m_changeDelayTimer = null;
     public DoublebufferedListView()
        : base()
     {
        // Set common properties for our listviews
        if (!SystemInformation.TerminalServerSession)
        {
           DoubleBuffered = true;
           SetStyle(ControlStyles.ResizeRedraw, true);
        }
     }

     /// <summary>
     /// Make sure to properly dispose of the timer
     /// </summary>
     /// <param name="disposing"></param>
     protected override void Dispose(bool disposing)
     {
        if (disposing && m_changeDelayTimer != null)
        {
           m_changeDelayTimer.Tick -= ChangeDelayTimerTick;
           m_changeDelayTimer.Dispose();
        }
        base.Dispose(disposing);
     }

     /// <summary>
     /// Hack to avoid lots of unnecessary change events by marshaling with a timer:
     /// http://stackoverflow.com/questions/86793/how-to-avoid-thousands-of-needless-listview-selectedindexchanged-events
     /// </summary>
     /// <param name="e"></param>
     protected override void OnSelectedIndexChanged(EventArgs e)
     {
        if (m_changeDelayTimer == null)
        {
           m_changeDelayTimer = new Timer();
           m_changeDelayTimer.Tick += ChangeDelayTimerTick;
           m_changeDelayTimer.Interval = 40;
        }
        m_changeDelayTimer.Enabled = false;
        m_changeDelayTimer.Enabled = true;
     }

     private void ChangeDelayTimerTick(object sender, EventArgs e)
     {
        m_changeDelayTimer.Enabled = false;
        base.OnSelectedIndexChanged(new EventArgs());
     }
  }

Do let me know if this can be improved.

link|flag
+1 for only double buffering if not in a terminal session/RDP – Ian Boyd Jun 11 at 13:38
vote up 2 vote down

This is the dwell timer solution i'm using for now (dwell just means "wait for a little bit"). This code might suffer from a race condition, and perhaps a null reference exception.

Timer changeDelayTimer = null;

private void lvResults_SelectedIndexChanged(object sender, EventArgs e)
{
        if (this.changeDelayTimer == null)
        {
        	this.changeDelayTimer = new Timer();
        	this.changeDelayTimer.Tick += ChangeDelayTimerTick;
        	this.changeDelayTimer.Interval = 200; //200ms is what Explorer uses
        }
        this.changeDelayTimer.Enabled = false;
        this.changeDelayTimer.Enabled = true;
}

private void ChangeDelayTimerTick(object sender, EventArgs e)
{
    this.changeDelayTimer.Enabled = false;
    this.changeDelayTimer.Dispose();
    this.changeDelayTimer = null;

    //Add original SelectedIndexChanged event handler code here
    //todo
}
link|flag
It should be noted that this 'dwell' solution isn't an answer. It's the hack workaround i implemented until i can get a real answer. – Ian Boyd Jun 12 at 18:54
The Timer class's event runs within the UI thread, so the code should work as expected. – Thanatos Jun 16 at 20:19
That doesn't mean that the code properly stops the timer when the form closes, or doesn't try to start another timer when the first one is going, or that the timer can't fire after the form has been disposed, or that isn't null before it is referened. "Just because it works doesn't mean it's right." – Ian Boyd Jun 17 at 13:35
vote up 0 vote down

I was just trying to tackle this very problem yesterday. I don't know exactly what you mean by "dwell" timers, but I tried implementing my very own version of waiting until all changes are done. Unfortunately the only way I could think of to do this was in a separate thread and it turns out that when you create a separate thread, your UI elements are inaccessible in that thread. .NET throws an exception stating that the UI elements can only be accessed in the thread where the elements were created! So, I found a way to optimize my response to the SelectedIndexChanged and make it fast enough to where it is bearable - its not a scalable solution though. Lets hope someone has a clever idea to tackle this problem in a single thread.

link|flag
i created an answer that shows the "dwell" concept. You start a timer during OnChange, and 200ms later all the seletions will be done, and you can then fire the real Change event. – Ian Boyd Jun 16 at 19:47
vote up 1 vote down

I would either try tying the postback to a button to allow the user to submit their changes and unhook the event handler.

link|flag
vote up -1 vote down

you can try removing the event handler

link|flag
Without any further elaboration this sounds snarky, -1. – Ian Boyd Jun 16 at 19:46
vote up 2 vote down

You could interpret the event on your own. That is, compare the list of selected items on the postback to the list of selected items before: if different, call your function that used to handle that event.

link|flag
Problem is that it's different every time. – Ian Boyd Sep 18 '08 at 14:19

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.