reactiveui whenany on dependency property
问题 I have simple WPF app with two textboxes and ReactiveUI. I try to lookup for dependency property of first textbox by using WhenAny public partial class MainWindow : Window { public MainWindow() { RxApp.DeferredScheduler = DispatcherScheduler.Current; InitializeComponent(); Text1.WhenAny(i => i.Text, i => i.Value).Subscribe(_ => SomeMethod()); } void SomeMethod() { MessageBox.Show("Boom!"); } } My Form code is <Window x:Class="TestObservable.MainWindow" xmlns="http://schemas.microsoft.com