0

I have an ItemsSource bound to a ReactiveList using

        this.WhenActivated(d =>
        {
            d(this.OneWayBind(this.ViewModel, x => x.Pool.ToBill, x => x.ToBillListBox.ItemsSource));
        });

which fills a ListBox when the application starts. So far so good... but correct me if I'm wrong, I expected that a later change in the ReactiveList would propagate and update the ListBox.

The change I'm talking about comes from a nested property of the ReactiveList, so setting ChangeTrackingEnabled to true is the way to go... but still isn't propagated.

I'm also aware of the possiblity of subscribing to ItemChanged, is this the way to go to update my items source?

ericdes
  • 612
  • 1
  • 6
  • 12

0 Answers0