Questions related to ReactiveUI, an MVVM framework that integrates with the Reactive Extensions

learn more… | top users | synonyms

0
votes
2answers
26 views

ReactiveUI The calling thread cannot access this object because a different thread owns it

If I use a binding in code behind, getting an error after click at change IsBusy "The calling thread cannot access this object because a different thread owns it" xaml: <Button ...
0
votes
3answers
61 views

mocking NewThreadScheduler.Default

I have a code var i = 0; _searchService.FindAll().SubscribeOn(NewThreadScheduler.Default).Subscribe(i => { i++ ...
0
votes
1answer
50 views

ReactiveAsyncCommand.RegisterAsyncAction - missing completion notification?

I'm using ReactiveUI. On a button, I want to call a webservice. If this call succeeds, I want to update my UI. When registering an asynchronous function with RegisterAsyncFunction, you get an ...
0
votes
1answer
41 views

UI access from ReactiveAsyncCommand

I want to register an async command that opens a file and processes it. OpenFileCommand = new ReactiveAsyncCommand(); OpenFileCommand.RegisterAsyncAction(_ => { var path = GetOpenFilePath(); ...
1
vote
1answer
35 views

Error: “You need to call RxApp.ConfigureServiceLocator to set up service location”

The following code provides the runtime error in the question title. Though, when I comment out the OneWayBind() call within the MainWindow constructor, the app runs without error. Any ideas? The ...
0
votes
1answer
69 views

How to expose WhenAny etc

I'm sure I've missed something or backed myself into some strange frustrated corner, but here is what I'm trying to do. I have a WPF application, using Unity as IoC. I have a number of services that ...
0
votes
2answers
86 views

ReactiveCommand with combined criteria for CanExecute

I have just started with ReactiveUI. I have the following class: public class MainViewModel : ReactiveObject, IRoutableViewModel { private string shareText; public ...
3
votes
3answers
118 views

ContentControl not updating

I'm trying to have a MainWindow that is bound to the a view. I change that view in code and expect it to update in the Main Window, however that is not happening. I have this code in my XAML ...
0
votes
1answer
65 views

Reactive Extensions (UI) increasing event calls

I have the below code. this.ObservableForProperty(x => x.SelectedDay) .Throttle(TimeSpan.FromMilliseconds(3600)) .Where(x => SelectedDay != null) ...
5
votes
2answers
235 views

Creating a ReactiveUI derived collection with more elements than the original

Is it possible to create a ReactiveUI derived collection that has more elements in it than the original? I've seen that there is a way of filtering a collection, and selecting single properties, but ...
1
vote
1answer
119 views

Subscribing to a dependency property on a user control in ReactiveUI

I'm trying to use ReactiveUI to subscribe to changes in a dependency property on a UserControl. I saw the technique described in another stack overflow answer(Combine dependency properties) but I'm ...
0
votes
1answer
61 views

ReactiveUi: button bound to a ReactiveAsyncCommand gets disabled after one use

The code is very simple. First the button is enabled. On click it gets disabled and stays that way. Command = new ReactiveAsyncCommand(); Command ...
0
votes
1answer
98 views

ReactiveUI: Testing progress indicator visibility while ReactiveAsyncCommand executes

I have a ReactiveAsyncCommand that for the moment are just sleeping for a while: public ReactiveAsyncCommand SignIn { get; private set; } //from constructor: SignIn = new ...
0
votes
2answers
195 views

WPF Treeview (MVVM) realtime represention (grouping) of binding source

Can anyone offer any pointers or examples of a WPF treeview (bound to a realtime source) where each root node and its children represents a different kind of summary of the binding source? Apology - ...
0
votes
1answer
156 views

Meteor template not updating using click event

I'm trying to make a reactive menu using meteor session (to persist the view the user was).. but it is not working, the Session.get('currentView') get changed (teste in chrome console), but the page ...
0
votes
0answers
45 views

Synchronizing a list of items and a list of selected items using CreateDerivedCollection()

I'm currently trying to sync two lists as mentioned in the topics subject, a list of items and a list of selected items. Each list contains an object of type, let's call it T, which has a property ...
0
votes
1answer
182 views

Does anyone know a good example of ReactiveCommand for ReactiveUI?

I'm inexperienced, especially at MVVM, but trying to use ReactiveUI, and I'm not understanding the examples that I'm finding that demonstrate ReactiveCommand. I have used ICommand / DelegateCommand ...
9
votes
3answers
193 views

Suppress “Member is never assigned to” warning in C#

I have the following code: ViewPortViewModel _Trochoid; public ViewPortViewModel Trochoid { get { return _Trochoid; } set { this.RaiseAndSetIfChanged(value); } } using ReactiveUI INPC ...
0
votes
1answer
94 views

Populating a ReactiveCollection from an IObservable

Just starting out with ReactiveUI. I am basically populating a grid with the results of a query. My viewmodel currently looks like this. public class QueryViewModel : ViewModelBase { private ...
0
votes
1answer
85 views

ReactiveUI ObservableAsPropertyHelper throws Cannot be converted to type exception

I'm trying to use ObservableAsPropertyHelper in order to set a readonly Property, but no matter what I try I can't seem to get it working as I expect. I can distill it into a single test (using ...
0
votes
1answer
63 views

MessageBus and Replay

I tried to register to the MessageBus an observable that replay the last value produced when a new subscription occurs var currentViewObs = currentViewGallery.ObservableForProperty(g => ...
0
votes
3answers
175 views

Ordering an observable collection with Reactiveui

I am having some difficulty with ordering an observable collection in my ViewModel. Here is my situation: In my view model, I have the following list: public List<TicketModel> Tickets ...
2
votes
2answers
158 views

Is there a pattern for subscribing to hierarchical property changes with Reactive UI?

Suppose I have the following view models: public class AddressViewModel : ReactiveObject { private string line; public string Line { get { return this.line; } set { ...
0
votes
1answer
140 views

ReactiveUI: Testing observable properties from unit tests

There is this example on the official RX blog: var scheduler = new TestScheduler(); var xs = scheduler.CreateColdObservable( OnNext(10, 42), OnCompleted<int>(20) ); var res = ...
10
votes
3answers
567 views

Is ReactiveUI Production Ready?

I've been looking into the feasability of using Reactive UI in production code. Some of the features are really appealing, but I have concerns about taking a dependency on this library. These include: ...
0
votes
1answer
53 views

UserError.Throw with non-default backing field naming convention

I'm having trouble understanding what I'm doing wrong with the UserError class. This is the code inside my ViewModel: this.CheckForUpdateCmd = new ReactiveAsyncCommand(Observable.Return(true)); ...
0
votes
2answers
90 views

Why are my WCF Async with Rx unit tests unstable?

I am using Rx and RxUI in a MVVM project and have a view model that queries its data from a WCF service asynchronously. In the unit tests I create a mock object that returns a Task with the expected ...
0
votes
1answer
80 views

ReactiveUI View Bindings to attached property

This Blog Entry describes using View Bindings as a replacement for XAML Bindings. I like the convention-based wire-up: this.OneWayBind(ViewModel, x => x.FooMirror); And if I want to bind to a ...
2
votes
1answer
443 views

could not load file or assembly 'system.core version=2.0.5.0

I was trying to use ReactiveUI in a WPF application that makes use of Prism. I installed the packages with NuGet, but simply adding the references led to the exception specified in the title during ...
1
vote
3answers
128 views

Combine dependency properties

I've done a few WPF projects now and see the same problem pop up and that is the "problem" of aggregating/combining dependency properties (dp's). For example, I have 10 dp's of type bool that I want ...
0
votes
1answer
85 views

ReactiveAsyncCommand with CanExecute = null results in CanExecute always being false

This question is related to a question I posted some time ago (here). I am using a ReactiveAsyncCommand in the following way: LoadTickets = new ReactiveAsyncCommand(null, 0, ...
1
vote
1answer
77 views

Subscribing to a ReactiveAsyncCommand is not calling OnError on thrown exception

I have created a ReactiveAsyncCommand (SL5) and have not been able to get a subscription to fire the OnError method. Here is the code Start1Command = new ReactiveAsyncCommand(); ...
0
votes
1answer
87 views

two whenany on one object bug

I use reactiveUI for watching properties of DP The code is /// <summary> /// Interaction logic for MainWindow.xaml /// </summary> public partial class MainWindow : Window { public ...
0
votes
1answer
120 views

ReactiveUI 4.1 CreateDerivedCollection(…) filter does not seem to work

I am using ReactiveUI 4.1. I use a ReactiveCollection of selectable items (having IsSelected flag) as a source for another derived reactive collection that uses filter to view only items that have ...
1
vote
1answer
317 views

ReactiveUI exception handling

I've looked around at a number of the ReactiveUI samples, but I can't see a good simple example of how to handle exceptions, where a message should be displayed to the user. (If there is a good ...
1
vote
2answers
113 views

ReactiveUI 4.2.1 NuGet package

I'm trying to add the ReactiveUI NuGet package to a new VS2012 C# WPF .NET 4.5 project, but the NuGet package manager reports a problem "unable to resolve dependency 'Microsoft.Bcl.Async.NotBeta'". ...
0
votes
1answer
209 views

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() ...
0
votes
1answer
107 views

dependency property to observable

I'm fan of Reactive Extension and especially ReactiveUI I have DP in other solution's project than mine. I'd like to convert this into observable Class containing this DP is internal and derived from ...
2
votes
1answer
145 views

Reactiveui Command binding

I apologize in advance if my question is a bit vague. I am looking into and learning reactiveui which I find a very interesting concept. For that, I am building a small application using WPF and ...
0
votes
1answer
47 views

ReactiveUI, Version=3.2.0.0 assembly references issue

I am using ReactiveUI 3.2. When I run my app (WPF based), I see following log messages while the app seem to run as expected (including some expected ReactiveUI base features): Calling assembly : ...
0
votes
1answer
186 views

ReactiveCollection cross thread access error

I taken the code from the ReactiveCollection sample to create a simple search app in Silverlight 5. But after the search results are returned, I get a cross thread error when the binding to the ...
2
votes
2answers
183 views

create observable<bool> from observablecollection

I have ObservableCollection<T> and I need to create observable<bool> which returns true if collection contains any elements I try to do this var collectionHasElementsObservable = ...
0
votes
1answer
98 views

where is CollectionExtensions.ObserveCollectionChanged() within ReactiveUI 4.0.2?

ReactiveUI 3.2.0.0 used to have CollectionExtensions class that implemented ObserveCollectionChanged() method. Where is the method now under ReactiveUI 4.0.2? private readonly ...
0
votes
1answer
92 views

Designdata in winrt when using reactiveui

I am trying to build an WinRT app with reactive ui and am getting the following error when constructing designdata: The type initializer for 'ReactiveUI.RxApp' threw an exception ...
1
vote
1answer
84 views

Updating items of ReactiveCollection<MyRecordType> right before adding new items to the collection

I am evaluating ReactiveExtensions and ReactiveUI for my current project. Both look very promising. However, I just ran into following problem. I have a type called RecordSet that defines a read only ...
0
votes
4answers
351 views

Using ReactiveCommand and WhenAny in inherited classes

Consider using inheritance with ReactiveUI. I have base ViewModel class with DoSomethingCommand. ‘CanExecute’ for this command depends on property Prop1 public class A : ReactiveObject { public ...
0
votes
1answer
134 views

Can I bind a ReactiveCommand to MouseDown event on Textbox?

I'm trying to get the WPF ReactiveUI framework's new view ctor binding to bind a ReactiveCommand that is working on a Button click to wire up to a TextBox MouseDown/click event. The following doesn't ...
0
votes
3answers
2k views

Cannot find all types reqired by the async modifier

I get the following two compiler errors (Resharper 7.0.1 reports no errors): Predefined type 'System.Runtime.CompilerServices.IAsyncStateMachine' is not defined or imported Cannot find all ...
0
votes
3answers
315 views

Missing assembly in Visual Studio 2012 ( but it is there! Honest! )

I have a project using Reactive Extensions and ReactiveUI. I upgraded to the pre release version and I have the following line of code OAPHCreationHelperMixin.ObservableToProperty(observable, ...
0
votes
1answer
269 views

problems installing ReactiveUI via nuget

I have a basically empty VS2012 class library project that I'm attempting to add ReactiveUI to. I've already used Nuget to install NLog and Reactive Extensions. When I try to install the ReactiveUI ...

1 2