ReactiveProperty is an open-source .NET library that provides convenience methods to convert IObservable objects and INotifyPropertyChanged events to properties that implement INotifyPropertyChanged, for the purpose of implementing databinding between a View and ViewModel in MVVM code. The library provides methods to assist in the creation of bindable Properties, Commands, and Collections. It is an alternative to the similarly name library, ReactiveUI.
Questions tagged [reactive-property]
9 questions
3
votes
0 answers
Unable to use ReactiveUI
I've developed a UWP and would like to use ReactiveUI but it introduces incompatibility when I install the 7.4.0 Nuget package. I target Universal Windows Anniversary edition and get the following when I build:
Error CS0433 The type 'Unit' exists…

Pat Pattillo
- 51
- 3
3
votes
3 answers
How to make the transition from "traditional" to reactive MVVM
I want to make a transition to a reactive view model / model.
I've used 3 scenarios so far:
"ValueA": The model value is only accessed from one view model at a time and the value is only changed through the view model
=> simple property in model,…

Onur
- 5,017
- 5
- 38
- 54
2
votes
1 answer
How to implement CanExecute in ReactiveCommand
In our Xamarin.Forms application we are using ReactiveProperty framework( https://github.com/runceel/ReactiveProperty).
Please note here we are only using ReactiveProperty and not ReactiveUI.
I have a SignInViewMode class like below..
public class…

Mahendra
- 155
- 3
- 12
1
vote
1 answer
Zip does not behave as expected
In my latest project I decided to test out some features the world of reactive programming offers.
Since it is a C# project I've started to use the System.Reactive and the ReactiveProperty nuget packages.
In my project I tried to combine 2…

M. Altmann
- 726
- 5
- 20
0
votes
0 answers
Binding multiple DisplayMemberPath combobox by one varriable not
I'm trying to bind the ComboBox to show both the Key and the Value property of my Details list,
on which this ComboBox.ItemSource should bind.
example
List data = new List
{
{Key = 1, Value = "Hight"},
{Key = 2, Value = "Normal"},
{Key =…

hungnt03
- 61
- 5
0
votes
1 answer
Conversion from open generic to value
we are using AutoMapper and ReactiveProperty in one of my projects extensively. So I created some mappings for all interfaces and classes of ReactiveProperty to Objects and reverse. It was a straight forward task as long as the IReactiveProperty…

Butzei
- 1
- 1
0
votes
2 answers
Better way to attach two ReactiveProperty
Im using ReactiveProperty library in my code and from time to time I need to attach two ReactiveProperty together maintaining property data synchronized. For example by combining a ReactivePropertySlim from a service class to a ReactiveProperty…

Alexei Agüero Alba
- 357
- 2
- 15
0
votes
0 answers
Cascade comboboxes with ReactiveCollection
I'm trying to setup linked comboboxes with ReactiveProperty and ReactiveCollection.
I have ItemViewModel like this:
public class ItemViewModel : BindableBase
{
public ItemViewModel (string name)
{
this.Name = name;
this.Range…

Zashikivarashi
- 1
- 2
0
votes
1 answer
ReactiveProperty initial value
I'm trying to set an initial value to the public ReactiveProperty ConnectionStatus.
public ViewModelConstructor()
{
ConnectionStatus = Observable
.Interval(RefreshInterval)
.Select(x =>…

Gabriel Robert
- 3,012
- 2
- 18
- 36