I have a weird situation. I have a longlistselector with MVVM databinding. When one item get's selected, I change the colour of the text to the phone accent colour. But the item doesn't change its colour on the screen. ( even not when I scroll in the list ) If I then just switch to another page and come back, the item colour is changed if I scroll to it if it is not visible. If it is visible, it still hasn't changed colour until I scroll it out of view and back into view, then the colour will also change.

Anyone the same experience?

link|improve this question

How are you changing the color? – Matt Lacey Nov 21 '11 at 11:55
On my model I have a property "Brush SelectedColour" and I change that for the selected item in the viewmodel. – Depechie Nov 24 '11 at 23:04
feedback

1 Answer

up vote 1 down vote accepted

If you're changing a bound value but it's not being reflected in the UI then this will typically indicate that you're not correctly notifying of the change. Make sure you're implementing INotifyPropertyChanegd on the viewmodel and calling RaisePropertyChanged appropriately.

link|improve this answer
Hey Matt, it's bound with mvvm-light, that framework does raise the changes automatically. – Depechie Nov 27 '11 at 20:35
@Depechie mvvm-light does not raise the changes automatically, it just makes it easier for you to do it if your viewmodels inherit from ViewModelBase. – Matt Lacey Nov 28 '11 at 10:02
ha? Maybe I'm missing something then? So if I databounded a collection to the list (the prop in the viewmodel has RaisePropertyChanged and is the collection), how would I signal one item it's colour change? I just changed the value and signaled the RaisePropertyChanged manually... – Depechie Nov 28 '11 at 21:39
Have you tried forcing the binding to update? – Matt Lacey Dec 13 '11 at 20:22
Other than manually calling the RaisePropertyChanged? ( because I'm doing that ) – Depechie Dec 15 '11 at 10:12
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

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