Fire ListView.SelectedIndexChanged Event Programmatically?

James picture James · Apr 30, 2009 · Viewed 12.7k times · Source

How can one programmatically fire the SelectedIndexChanged event of a ListView?

I've intended for the first item in my ListView to automatically become selected after the user completes a certain action. Code already exists within the SelectedIndexChanged event to highlight the selected item. Not only does the item fail to become highlighted, but a breakpoint set within SelectedIndexChanged is never hit. Moreover, a Debug.WriteLine fails to produce output, so I am rather certain that event has not fired.

The following code fails to fire the event:

listView.Items[0].Selected = false;
listView.Items[0].Selected = true;
listView.Select();
Application.DoEvents();

The extra .Select() method call was included for good measure. ;) The deselection (.Selected = false) was included to deselect the ListViewItem in the .Items collection just in case it may have been selected by default and therefore setting it to 'true' would have no effect. The 'Application.DoEvents()' call is yet another last ditch method.

Shouldn't the above code cause the SelectedIndexChanged event to fire?

I should mention that the SelectedIndexChanged event fires properly on when an item is selcted via keyboard or mouse input.

Answer

Andrew Hare picture Andrew Hare · Apr 30, 2009

Why can't you move the code that is currently inside your event handler's method into a method that can be called from the original spot and also from your code?

Something like this:

class Foo
{
    void bar(Object o, EventArgs e)
    {
        // imagine this is something important
        int x = 2;
    }

    void baz()
    {
        // you want to call bar() here ideally
    }
}

would be refactored to this:

class Foo
{
    void bar(Object o, EventArgs e)
    {
        bop();
    }

    void baz()
    {
        bop();
    }

    void bop()
    {
        // imagine this is something important
        int x = 2;
    }
}