Skip to content
Discussion options

You must be logged in to vote

Well, I'm done.
To those who come later:

public class MyVM: ReactiveObject
{
    private readonly ObservableCollectionExtended<MyItem> one = [];
    private ObservableCollectionExtended<MyItem> two = [];
    private ObservableCollectionExtended<MyItem> Two
    {
        get => two;
        set => this.RaiseAndSetIfChanged(ref two, value);
    }
    private ReadOnlyObservableCollection<MyItem>? combineCollection;

    // ItemsSource Binding property
    public DataGridCollectionView ViewSource { get; }
        
    public MyVM()
    {
        var streamOne = one.ToObservableChangeSet();
        // monitor property Two and convert new value into new ChangeSet source
        var streamTwo = …

Replies: 2 comments 2 replies

Comment options

You must be logged in to vote
1 reply
@Flithor
Comment options

Comment options

You must be logged in to vote
1 reply
@Flithor
Comment options

Answer selected by Flithor
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants