-
|
I'm looking for a way to have multiple list sources (individual observable collections) to be rendered in For context: I use I tried to implement my own composite observable collection with signature as follows: public class CompositeObservableCollection<TItem> :
IReadOnlyList<TItem>,
INotifyCollectionChanged,
INotifyPropertyChangedAlas, when I bind such source to Does |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
|
https://github.com/AvaloniaUI/Avalonia/blob/release/11.0.9/src/Avalonia.Controls/ItemsSourceView.cs#L267 I am surprised it doesn't throw an exception for you now. Implement IList and it should work |
Beta Was this translation helpful? Give feedback.
https://github.com/AvaloniaUI/Avalonia/blob/release/11.0.9/src/Avalonia.Controls/ItemsSourceView.cs#L267 I am surprised it doesn't throw an exception for you now. Implement IList and it should work