ReactiveUI
ReactiveUI copied to clipboard
An advanced, composable, functional reactive model-view-viewmodel framework for all .NET platforms that is inspired by functional reactive programming. ReactiveUI allows you to abstract mutable state...
In version 6.5, we would instantiate a ViewModelViewHost like this: ``` cs private ViewModelViewHost _subViewHost; public override void AwakeFromNib() { base.AwakeFromNib(); // here, CustomView is an IBOutlet tied to an...
**Do you want to request a *feature* or report a *bug*?** Bug **What is the current behavior?** When multiple children are added to a ReactiveContentPage activation occurs only for a...
``` ghuntley [10:31 PM] @flagbug: I'm doing UWP currently, as is @moswald so between us we got that covered. flagbug [10:34 PM] @ghuntley: Beware, there are some major issues with...
**What is the current behavior?** and this.WhenAnyValue(p=>p.FilterText.Text).Subscribe(Console.WriteLine) will crash with a cross thread access exception. This happens if the window the control in hosted in is running in a different...
***Note*: for support questions, please ask on StackOverflow: https://stackoverflow.com/questions/tagged/reactiveui . This repository's issues are reserved for feature requests and bug reports.** **Bug/Feature** /// /// BindTo takes an Observable stream and...
Given a DTO object defined like below ``` [DataContract(Name="MoineauCorrection", Namespace="http://weingartner.com/")] public class MoineauCorrection : Immutable, IEquatable { #region Main [DataMember] public bool Visible{get; private set;} [DataMember] public double Peak{ get;...
**Do you want to request a *feature* or report a *bug*?** It is a bug. **What is the current behavior?** WhenAnyValue does not fire event after property was changed in...
When adding the WhenActivated call to a iOS viewController, the viewController does not get released from memory. Using instruments to analyse the memory allocations in the app will show that...
I'm on WinRT and have created an app that is a share target It seems like each time the app is opened as share target, it gets assigned a new...
### Describe the bug 🐞 A bug happened! View&ViewModel's WhenActivated in MAUI triggered with error order ### Step to reproduce Create New MAUI Applicaton ``` c# public class DemoViewModel :...