reactiveui Questions
2
Solved
Suppose I have the following view models:
public class AddressViewModel : ReactiveObject
{
private string line;
public string Line
{
get { return this.line; }
set { this.RaiseAndSetIfChanged...
Hypothesize asked 24/1, 2013 at 14:14
1
Solved
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 = scheduler.S...
Firecracker asked 23/1, 2013 at 18:15
3
Solved
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 inclu...
Mesognathous asked 21/1, 2013 at 10:40
1
Solved
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 exa...
Crossjack asked 19/12, 2012 at 9:57
3
Solved
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...
Fungosity asked 20/10, 2012 at 9:40
1
Solved
I need to execute async delete operation with user confirmation. Something like this:
public ReactiveAsyncCommand DeleteCommand { get; protected set; }
...
DeleteCommand = new ReactiveAsyncCommand...
Joeannjoed asked 6/9, 2012 at 10:10
2
Solved
I have a ReactiveUI-like view model. It has several properties of different types which fire NotifyPropertyChanged events and I want to subscribe a method that will be called when any is fired, but...
Ous asked 4/11, 2011 at 14:3
1
Solved
I've been doing some prototype work on a new Silverlight application using Caliburn Micro as our MVVM Framework. The team has generally been happy with it. In order to address some issues with thro...
Lebkuchen asked 21/7, 2011 at 15:55
© 2022 - 2024 — McMap. All rights reserved.