vote up 2 vote down star

Hi,,

I have WPF ListBox which is bound to a ObservableCollection, when the collection changes, all items update their position.

The new position is stored in the collection but the UI does not update. So I added the following:

    void scenarioItems_CollectionChanged(object sender, System.Collections.Specialized.NotifyCollectionChangedEventArgs e)
    {
        ToolboxListItem.UpdatePositions();
        lstScenario.ItemsSource = null;
        lstScenario.ItemsSource = ToolboxListItem.ScenarioItems;
        this.lstScenario.SelectedIndex = e.NewStartingIndex;
    }

By setting the ItemsSource to null and then binding it again, the UI is updated,

but this is probably very bad coding :p

Suggestions?

flag

Can you please give more detail on what you mean by "when the collection changes, all items update their position", just so I can be sure I am answering your question properly? – Donnelle Oct 31 '08 at 12:22

5 Answers

vote up 4 vote down check

I have a Listbox bound to an object property which is of type List<MyCustomType>() and I verified that the following code updates the listbox when the List is updated.

void On_MyObjProperty_PropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e)
{
   MyListBox.Items.Refresh();
}

If you're still facing issues, scan the VS IDE output window (Ctrl+W, O) and see if you can spot any binding errors reported.

link|flag
This does seem to solve the problem, so I'll move the bug question into another post. Thank you! – TimothyP Oct 31 '08 at 12:19
Thank you Gishu! – Artur Carvalho Mar 3 at 0:51
vote up 0 vote down

I had the same problem yesterday, and it's a complete piece of crap :) ... I'm not setting mine to null anymore though. In my scenario, I am setting it to MyList.ToArray() (after every time I add to the list).

I've seen multiple "oh, you need to use an ObservableList" <-- complete crap.

I've seen multiple "oh, call 'Refresh'" <-- complete crap.

Please forgive my upsettedness, but I also would expect this to work :)

link|flag
Trust me, I can understand your frustration, so no offence taken. I have tried using GetBindingExpression but that retuls in a null :p – TimothyP Oct 31 '08 at 10:37
my "GetBindingExpression" doens't return null... but even if I call "UpdateTarget" it does nothing :( ... only in this case... it works great for everything else. – Timothy Khouri Oct 31 '08 at 11:05
vote up 3 vote down

What is it an ObservableCollection of? Does that class implement INotifyPropertyChanged, and do you trigger PropertyChanged when your position value is updated?

link|flag
Aha... so then I wouldn't have to refresh manually? – TimothyP Nov 2 '08 at 11:51
I added this now, but the .Refresh() is still required it would seem, I call it in the CollectionChanged event of the Observable list. What have I gained from implementing the interface? – TimothyP Nov 2 '08 at 12:33
I'm not sure I understand exactly what you're doing with the collection and the positions. I implemented a button to change the collection- the new list would show (and the position values were not updated in the UI). When I added PropertyChanged to the position getter, the position would display – Donnelle Nov 2 '08 at 17:40
Setter, not getter. – Donnelle Nov 2 '08 at 17:40
vote up 0 vote down

Thanx for your help

You are a genius!!!!

Have a nice day

link|flag
vote up 0 vote down

If you have an ObservableList of objects, and you're changing properties inside those objects, the notification doesn't apply since the collection is not changing directly. I have been forcing notification after changing my object properties by using Insert() to re-add my changed object to the collection, then RemoveAt() to remove the old copy. It's not pretty, but it works.

link|flag

Your Answer

Get an OpenID
or

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