RX: 'ObservableAsProperty' bound properties are not automatically updated on gui
问题 I have a Client MyClient which provides new stati via an IObservable . As described in the documentation (https://reactiveui.net/docs/handbook/view-models/boilerplate-code) I made a private property of type ObservableAsProperty to get the output of my IObservable . But know my GUI is not updated automatically on changes. public partial class MainWindow : ReactiveWindow<AppViewModel> { public MainWindow() { InitializeComponent(); ViewModel = App.Container.GetInstance<AppViewModel>(); this