The recording of the first ever ReactiveUI virtual conference is available on our YouTube Channel.

ReactiveWindow<TViewModel> Class

Summary

A Window that is reactive.
Namespace
ReactiveUI
Interfaces
Base Types
  • Window
graph BT Type-->Base0["Window"] Type-.->Interface0["IViewFor<TViewModel>"] Type-.->Interface1["IViewFor"] click Interface1 "/api/ReactiveUI/IViewFor" Type-.->Interface2["IActivatableView"] click Interface2 "/api/ReactiveUI/IActivatableView" Type["ReactiveWindow<TViewModel>"] class Type type-node

Syntax

public class ReactiveWindow<TViewModel> : Window, IViewFor<TViewModel>, IViewFor, IActivatableView 
    where TViewModel : class

Remarks

This class is a Window that is also reactive. That is, it implements IViewFor<T>. You can extend this class to get an implementation of IViewFor<T> rather than writing one yourself.

Note that the XAML for your control must specify the same base class, including the generic argument you provide for your view model. To do this, use the TypeArguments attribute as follows:

<rxui:ReactiveWindow
        x:Class="Foo.Bar.Views.YourView"
        x:TypeArguments="vms:YourViewModel"
        xmlns:rxui="http://reactiveui.net"
        xmlns:vms="clr-namespace:Foo.Bar.ViewModels"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
        mc:Ignorable="d">
    <!-- view XAML here -->
</rxui:ReactiveWindow>

Type Parameters

Name Description
TViewModel The type of the view model backing the view.

Fields

Name Constant Value Summary
ViewModelProperty
The view model dependency property.
static

Properties

Name Value Summary
BindingRoot TViewModel
Gets the binding root view model.
ViewModel TViewModel
Gets or sets the ViewModel corresponding to this specific View. This should be a DependencyProperty if you're using XAML.

Extension Methods

Name Value Summary
Bind<TViewModel, ReactiveWindow<TViewModel>, TVMProp, TVProp, TDontCare>(TViewModel, Expression<Func<TViewModel, TVMProp>>, Expression<Func<ReactiveWindow<TViewModel>, TVProp>>, IObservable<TDontCare>?, Func<TVMProp, TVProp>, Func<TVProp, TVMProp>, TriggerUpdate) IReactiveBinding<TView, (object view, bool isViewModel)>
Binds the specified view model property to the given view property.
Bind<TViewModel, ReactiveWindow<TViewModel>, TVMProp, TVProp, TDontCare>(TViewModel, Expression<Func<TViewModel, TVMProp>>, Expression<Func<ReactiveWindow<TViewModel>, TVProp>>, IObservable<TDontCare>?, object, IBindingTypeConverter, IBindingTypeConverter, TriggerUpdate) IReactiveBinding<TView, (object view, bool isViewModel)>
Binds the specified view model property to the given view property, and provide a custom view update signaler to signal when the view property has been updated.
Bind<TViewModel, ReactiveWindow<TViewModel>, TVMProp, TVProp>(TViewModel, Expression<Func<TViewModel, TVMProp>>, Expression<Func<ReactiveWindow<TViewModel>, TVProp>>, Func<TVMProp, TVProp>, Func<TVProp, TVMProp>) IReactiveBinding<TView, (object view, bool isViewModel)>
Binds the specified view model property to the given view property.
Bind<TViewModel, ReactiveWindow<TViewModel>, TVMProp, TVProp>(TViewModel, Expression<Func<TViewModel, TVMProp>>, Expression<Func<ReactiveWindow<TViewModel>, TVProp>>, object, IBindingTypeConverter, IBindingTypeConverter) IReactiveBinding<TView, (object view, bool isViewModel)>
Binds the specified view model property to the given view property.
BindCommand<ReactiveWindow<TViewModel>, TViewModel, TProp, TControl, TParam>(TViewModel, Expression<Func<TViewModel, TProp>>, Expression<Func<ReactiveWindow<TViewModel>, TControl>>, Expression<Func<TViewModel, TParam>>, string) IReactiveBinding<TView, TProp>
Bind a command from the ViewModel to an explicitly specified control on the View.
BindCommand<ReactiveWindow<TViewModel>, TViewModel, TProp, TControl, TParam>(TViewModel, Expression<Func<TViewModel, TProp>>, Expression<Func<ReactiveWindow<TViewModel>, TControl>>, IObservable<TParam>, string) IReactiveBinding<TView, TProp>
Bind a command from the ViewModel to an explicitly specified control on the View.
BindCommand<ReactiveWindow<TViewModel>, TViewModel, TProp, TControl>(TViewModel, Expression<Func<TViewModel, TProp>>, Expression<Func<ReactiveWindow<TViewModel>, TControl>>, string) IReactiveBinding<TView, TProp>
Bind a command from the ViewModel to an explicitly specified control on the View.
BindInteraction<TViewModel, ReactiveWindow<TViewModel>, TInput, TOutput, TDontCare>(TViewModel, Expression<Func<TViewModel, IInteraction<TInput, TOutput>>>, Func<IInteractionContext<TInput, TOutput>, IObservable<TDontCare>>) IDisposable
Binds the IInteraction<TInput, TOutput> on a ViewModel to the specified handler.
BindInteraction<TViewModel, ReactiveWindow<TViewModel>, TInput, TOutput>(TViewModel, Expression<Func<TViewModel, IInteraction<TInput, TOutput>>>, Func<IInteractionContext<TInput, TOutput>, Task>) IDisposable
Binds the IInteraction<TInput, TOutput> on a ViewModel to the specified handler.
BindValidation<ReactiveWindow<TViewModel>, TViewModel, TViewModelProperty, TViewProperty>(TViewModel, Expression<Func<TViewModel, TViewModelProperty>>, Expression<Func<ReactiveWindow<TViewModel>, TViewProperty>>, IValidationTextFormatter<string>) IDisposable
Binds the specified ViewModel property validation to the View property.
BindValidation<ReactiveWindow<TViewModel>, TViewModel, TViewModelProperty>(TViewModel, Expression<Func<TViewModel, TViewModelProperty>>, TextInputLayout, IValidationTextFormatter<string>) IDisposable
Platform binding to the TextInputLayout.
BindValidation<ReactiveWindow<TViewModel>, TViewModel, TViewModelProperty>(TViewModel, Expression<Func<TViewModel, TViewModelProperty>>, TextInputLayout, IValidationTextFormatter<string>) IDisposable
Platform binding to the TextInputLayout.
BindValidation<ReactiveWindow<TViewModel>, TViewModel, TViewProperty>(TViewModel, Expression<Func<ReactiveWindow<TViewModel>, TViewProperty>>, IValidationTextFormatter<string>) IDisposable
Binds the overall validation of a ViewModel to a specified View property.
BindValidation<ReactiveWindow<TViewModel>, TViewModel, TViewProperty>(TViewModel, Expression<Func<TViewModel, ValidationHelper>>, Expression<Func<ReactiveWindow<TViewModel>, TViewProperty>>, IValidationTextFormatter<string>) IDisposable
Binds a ValidationHelper from a ViewModel to a specified View property.
BindValidation<ReactiveWindow<TViewModel>, TViewModel>(TViewModel, Expression<Func<TViewModel, ValidationHelper>>, TextInputLayout, IValidationTextFormatter<string>) IDisposable
Platform binding to the TextInputLayout.
BindValidation<ReactiveWindow<TViewModel>, TViewModel>(TViewModel, Expression<Func<TViewModel, ValidationHelper>>, TextInputLayout, IValidationTextFormatter<string>) IDisposable
Platform binding to the TextInputLayout.
BindValidationEx<ReactiveWindow<TViewModel>, TViewModel, TViewModelProperty>(TViewModel, Expression<Func<TViewModel, TViewModelProperty>>, TextInputLayout, IValidationTextFormatter<string>) IDisposable
Platform binding to the TextInputLayout.
BindValidationEx<ReactiveWindow<TViewModel>, TViewModel, TViewModelProperty>(TViewModel, Expression<Func<TViewModel, TViewModelProperty>>, TextInputLayout, IValidationTextFormatter<string>) IDisposable
Platform binding to the TextInputLayout.
InvokeViewModelAction<T>(Action<T>) object
This is a thing I lifted from Prism.
OneWayBind<TViewModel, ReactiveWindow<TViewModel>, TProp, TOut>(TViewModel, Expression<Func<TViewModel, TProp>>, Expression<Func<ReactiveWindow<TViewModel>, TOut>>, Func<TProp, TOut>) IReactiveBinding<TView, TOut>
Binds the specified view model property to the given view, in a one-way (view model to view) fashion, with the value of the view model property mapped through a selector function.
OneWayBind<TViewModel, ReactiveWindow<TViewModel>, TVMProp, TVProp>(TViewModel, Expression<Func<TViewModel, TVMProp>>, Expression<Func<ReactiveWindow<TViewModel>, TVProp>>, object, IBindingTypeConverter) IReactiveBinding<TView, TVProp>
Binds the given property on the view model to a given property on the view in a one-way (view model to view) fashion.
WhenAny<ReactiveWindow<TViewModel>, TRet, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12>(Expression<Func<ReactiveWindow<TViewModel>, T1>>, Expression<Func<ReactiveWindow<TViewModel>, T2>>, Expression<Func<ReactiveWindow<TViewModel>, T3>>, Expression<Func<ReactiveWindow<TViewModel>, T4>>, Expression<Func<ReactiveWindow<TViewModel>, T5>>, Expression<Func<ReactiveWindow<TViewModel>, T6>>, Expression<Func<ReactiveWindow<TViewModel>, T7>>, Expression<Func<ReactiveWindow<TViewModel>, T8>>, Expression<Func<ReactiveWindow<TViewModel>, T9>>, Expression<Func<ReactiveWindow<TViewModel>, T10>>, Expression<Func<ReactiveWindow<TViewModel>, T11>>, Expression<Func<ReactiveWindow<TViewModel>, T12>>, Func<IObservedChange<ReactiveWindow<TViewModel>, T1>, IObservedChange<ReactiveWindow<TViewModel>, T2>, IObservedChange<ReactiveWindow<TViewModel>, T3>, IObservedChange<ReactiveWindow<TViewModel>, T4>, IObservedChange<ReactiveWindow<TViewModel>, T5>, IObservedChange<ReactiveWindow<TViewModel>, T6>, IObservedChange<ReactiveWindow<TViewModel>, T7>, IObservedChange<ReactiveWindow<TViewModel>, T8>, IObservedChange<ReactiveWindow<TViewModel>, T9>, IObservedChange<ReactiveWindow<TViewModel>, T10>, IObservedChange<ReactiveWindow<TViewModel>, T11>, IObservedChange<ReactiveWindow<TViewModel>, T12>, TRet>) IObservable<TRet>
WhenAny allows you to observe whenever one or more properties on an object have changed, providing an initial value when the Observable is set up, unlike ObservableForProperty(). Use this method in constructors to set up bindings between properties that also need an initial setup.
WhenAny<ReactiveWindow<TViewModel>, TRet, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11>(Expression<Func<ReactiveWindow<TViewModel>, T1>>, Expression<Func<ReactiveWindow<TViewModel>, T2>>, Expression<Func<ReactiveWindow<TViewModel>, T3>>, Expression<Func<ReactiveWindow<TViewModel>, T4>>, Expression<Func<ReactiveWindow<TViewModel>, T5>>, Expression<Func<ReactiveWindow<TViewModel>, T6>>, Expression<Func<ReactiveWindow<TViewModel>, T7>>, Expression<Func<ReactiveWindow<TViewModel>, T8>>, Expression<Func<ReactiveWindow<TViewModel>, T9>>, Expression<Func<ReactiveWindow<TViewModel>, T10>>, Expression<Func<ReactiveWindow<TViewModel>, T11>>, Func<IObservedChange<ReactiveWindow<TViewModel>, T1>, IObservedChange<ReactiveWindow<TViewModel>, T2>, IObservedChange<ReactiveWindow<TViewModel>, T3>, IObservedChange<ReactiveWindow<TViewModel>, T4>, IObservedChange<ReactiveWindow<TViewModel>, T5>, IObservedChange<ReactiveWindow<TViewModel>, T6>, IObservedChange<ReactiveWindow<TViewModel>, T7>, IObservedChange<ReactiveWindow<TViewModel>, T8>, IObservedChange<ReactiveWindow<TViewModel>, T9>, IObservedChange<ReactiveWindow<TViewModel>, T10>, IObservedChange<ReactiveWindow<TViewModel>, T11>, TRet>) IObservable<TRet>
WhenAny allows you to observe whenever one or more properties on an object have changed, providing an initial value when the Observable is set up, unlike ObservableForProperty(). Use this method in constructors to set up bindings between properties that also need an initial setup.
WhenAny<ReactiveWindow<TViewModel>, TRet, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>(Expression<Func<ReactiveWindow<TViewModel>, T1>>, Expression<Func<ReactiveWindow<TViewModel>, T2>>, Expression<Func<ReactiveWindow<TViewModel>, T3>>, Expression<Func<ReactiveWindow<TViewModel>, T4>>, Expression<Func<ReactiveWindow<TViewModel>, T5>>, Expression<Func<ReactiveWindow<TViewModel>, T6>>, Expression<Func<ReactiveWindow<TViewModel>, T7>>, Expression<Func<ReactiveWindow<TViewModel>, T8>>, Expression<Func<ReactiveWindow<TViewModel>, T9>>, Expression<Func<ReactiveWindow<TViewModel>, T10>>, Func<IObservedChange<ReactiveWindow<TViewModel>, T1>, IObservedChange<ReactiveWindow<TViewModel>, T2>, IObservedChange<ReactiveWindow<TViewModel>, T3>, IObservedChange<ReactiveWindow<TViewModel>, T4>, IObservedChange<ReactiveWindow<TViewModel>, T5>, IObservedChange<ReactiveWindow<TViewModel>, T6>, IObservedChange<ReactiveWindow<TViewModel>, T7>, IObservedChange<ReactiveWindow<TViewModel>, T8>, IObservedChange<ReactiveWindow<TViewModel>, T9>, IObservedChange<ReactiveWindow<TViewModel>, T10>, TRet>) IObservable<TRet>
WhenAny allows you to observe whenever one or more properties on an object have changed, providing an initial value when the Observable is set up, unlike ObservableForProperty(). Use this method in constructors to set up bindings between properties that also need an initial setup.
WhenAny<ReactiveWindow<TViewModel>, TRet, T1, T2, T3, T4, T5, T6, T7, T8, T9>(Expression<Func<ReactiveWindow<TViewModel>, T1>>, Expression<Func<ReactiveWindow<TViewModel>, T2>>, Expression<Func<ReactiveWindow<TViewModel>, T3>>, Expression<Func<ReactiveWindow<TViewModel>, T4>>, Expression<Func<ReactiveWindow<TViewModel>, T5>>, Expression<Func<ReactiveWindow<TViewModel>, T6>>, Expression<Func<ReactiveWindow<TViewModel>, T7>>, Expression<Func<ReactiveWindow<TViewModel>, T8>>, Expression<Func<ReactiveWindow<TViewModel>, T9>>, Func<IObservedChange<ReactiveWindow<TViewModel>, T1>, IObservedChange<ReactiveWindow<TViewModel>, T2>, IObservedChange<ReactiveWindow<TViewModel>, T3>, IObservedChange<ReactiveWindow<TViewModel>, T4>, IObservedChange<ReactiveWindow<TViewModel>, T5>, IObservedChange<ReactiveWindow<TViewModel>, T6>, IObservedChange<ReactiveWindow<TViewModel>, T7>, IObservedChange<ReactiveWindow<TViewModel>, T8>, IObservedChange<ReactiveWindow<TViewModel>, T9>, TRet>) IObservable<TRet>
WhenAny allows you to observe whenever one or more properties on an object have changed, providing an initial value when the Observable is set up, unlike ObservableForProperty(). Use this method in constructors to set up bindings between properties that also need an initial setup.
WhenAny<ReactiveWindow<TViewModel>, TRet, T1, T2, T3, T4, T5, T6, T7, T8>(Expression<Func<ReactiveWindow<TViewModel>, T1>>, Expression<Func<ReactiveWindow<TViewModel>, T2>>, Expression<Func<ReactiveWindow<TViewModel>, T3>>, Expression<Func<ReactiveWindow<TViewModel>, T4>>, Expression<Func<ReactiveWindow<TViewModel>, T5>>, Expression<Func<ReactiveWindow<TViewModel>, T6>>, Expression<Func<ReactiveWindow<TViewModel>, T7>>, Expression<Func<ReactiveWindow<TViewModel>, T8>>, Func<IObservedChange<ReactiveWindow<TViewModel>, T1>, IObservedChange<ReactiveWindow<TViewModel>, T2>, IObservedChange<ReactiveWindow<TViewModel>, T3>, IObservedChange<ReactiveWindow<TViewModel>, T4>, IObservedChange<ReactiveWindow<TViewModel>, T5>, IObservedChange<ReactiveWindow<TViewModel>, T6>, IObservedChange<ReactiveWindow<TViewModel>, T7>, IObservedChange<ReactiveWindow<TViewModel>, T8>, TRet>) IObservable<TRet>
WhenAny allows you to observe whenever one or more properties on an object have changed, providing an initial value when the Observable is set up, unlike ObservableForProperty(). Use this method in constructors to set up bindings between properties that also need an initial setup.
WhenAny<ReactiveWindow<TViewModel>, TRet, T1, T2, T3, T4, T5, T6, T7>(Expression<Func<ReactiveWindow<TViewModel>, T1>>, Expression<Func<ReactiveWindow<TViewModel>, T2>>, Expression<Func<ReactiveWindow<TViewModel>, T3>>, Expression<Func<ReactiveWindow<TViewModel>, T4>>, Expression<Func<ReactiveWindow<TViewModel>, T5>>, Expression<Func<ReactiveWindow<TViewModel>, T6>>, Expression<Func<ReactiveWindow<TViewModel>, T7>>, Func<IObservedChange<ReactiveWindow<TViewModel>, T1>, IObservedChange<ReactiveWindow<TViewModel>, T2>, IObservedChange<ReactiveWindow<TViewModel>, T3>, IObservedChange<ReactiveWindow<TViewModel>, T4>, IObservedChange<ReactiveWindow<TViewModel>, T5>, IObservedChange<ReactiveWindow<TViewModel>, T6>, IObservedChange<ReactiveWindow<TViewModel>, T7>, TRet>) IObservable<TRet>
WhenAny allows you to observe whenever one or more properties on an object have changed, providing an initial value when the Observable is set up, unlike ObservableForProperty(). Use this method in constructors to set up bindings between properties that also need an initial setup.
WhenAny<ReactiveWindow<TViewModel>, TRet, T1, T2, T3, T4, T5, T6>(Expression<Func<ReactiveWindow<TViewModel>, T1>>, Expression<Func<ReactiveWindow<TViewModel>, T2>>, Expression<Func<ReactiveWindow<TViewModel>, T3>>, Expression<Func<ReactiveWindow<TViewModel>, T4>>, Expression<Func<ReactiveWindow<TViewModel>, T5>>, Expression<Func<ReactiveWindow<TViewModel>, T6>>, Func<IObservedChange<ReactiveWindow<TViewModel>, T1>, IObservedChange<ReactiveWindow<TViewModel>, T2>, IObservedChange<ReactiveWindow<TViewModel>, T3>, IObservedChange<ReactiveWindow<TViewModel>, T4>, IObservedChange<ReactiveWindow<TViewModel>, T5>, IObservedChange<ReactiveWindow<TViewModel>, T6>, TRet>) IObservable<TRet>
WhenAny allows you to observe whenever one or more properties on an object have changed, providing an initial value when the Observable is set up, unlike ObservableForProperty(). Use this method in constructors to set up bindings between properties that also need an initial setup.
WhenAny<ReactiveWindow<TViewModel>, TRet, T1, T2, T3, T4, T5>(Expression<Func<ReactiveWindow<TViewModel>, T1>>, Expression<Func<ReactiveWindow<TViewModel>, T2>>, Expression<Func<ReactiveWindow<TViewModel>, T3>>, Expression<Func<ReactiveWindow<TViewModel>, T4>>, Expression<Func<ReactiveWindow<TViewModel>, T5>>, Func<IObservedChange<ReactiveWindow<TViewModel>, T1>, IObservedChange<ReactiveWindow<TViewModel>, T2>, IObservedChange<ReactiveWindow<TViewModel>, T3>, IObservedChange<ReactiveWindow<TViewModel>, T4>, IObservedChange<ReactiveWindow<TViewModel>, T5>, TRet>) IObservable<TRet>
WhenAny allows you to observe whenever one or more properties on an object have changed, providing an initial value when the Observable is set up, unlike ObservableForProperty(). Use this method in constructors to set up bindings between properties that also need an initial setup.
WhenAny<ReactiveWindow<TViewModel>, TRet, T1, T2, T3, T4>(Expression<Func<ReactiveWindow<TViewModel>, T1>>, Expression<Func<ReactiveWindow<TViewModel>, T2>>, Expression<Func<ReactiveWindow<TViewModel>, T3>>, Expression<Func<ReactiveWindow<TViewModel>, T4>>, Func<IObservedChange<ReactiveWindow<TViewModel>, T1>, IObservedChange<ReactiveWindow<TViewModel>, T2>, IObservedChange<ReactiveWindow<TViewModel>, T3>, IObservedChange<ReactiveWindow<TViewModel>, T4>, TRet>) IObservable<TRet>
WhenAny allows you to observe whenever one or more properties on an object have changed, providing an initial value when the Observable is set up, unlike ObservableForProperty(). Use this method in constructors to set up bindings between properties that also need an initial setup.
WhenAny<ReactiveWindow<TViewModel>, TRet, T1, T2, T3>(Expression<Func<ReactiveWindow<TViewModel>, T1>>, Expression<Func<ReactiveWindow<TViewModel>, T2>>, Expression<Func<ReactiveWindow<TViewModel>, T3>>, Func<IObservedChange<ReactiveWindow<TViewModel>, T1>, IObservedChange<ReactiveWindow<TViewModel>, T2>, IObservedChange<ReactiveWindow<TViewModel>, T3>, TRet>) IObservable<TRet>
WhenAny allows you to observe whenever one or more properties on an object have changed, providing an initial value when the Observable is set up, unlike ObservableForProperty(). Use this method in constructors to set up bindings between properties that also need an initial setup.
WhenAny<ReactiveWindow<TViewModel>, TRet, T1, T2>(Expression<Func<ReactiveWindow<TViewModel>, T1>>, Expression<Func<ReactiveWindow<TViewModel>, T2>>, Func<IObservedChange<ReactiveWindow<TViewModel>, T1>, IObservedChange<ReactiveWindow<TViewModel>, T2>, TRet>) IObservable<TRet>
WhenAny allows you to observe whenever one or more properties on an object have changed, providing an initial value when the Observable is set up, unlike ObservableForProperty(). Use this method in constructors to set up bindings between properties that also need an initial setup.
WhenAny<ReactiveWindow<TViewModel>, TRet, T1>(Expression<Func<ReactiveWindow<TViewModel>, T1>>, Func<IObservedChange<ReactiveWindow<TViewModel>, T1>, TRet>) IObservable<TRet>
WhenAny allows you to observe whenever one or more properties on an object have changed, providing an initial value when the Observable is set up, unlike ObservableForProperty(). Use this method in constructors to set up bindings between properties that also need an initial setup.
WhenAnyDynamic<ReactiveWindow<TViewModel>, TRet>(Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Func<IObservedChange<ReactiveWindow<TViewModel>, object>, IObservedChange<ReactiveWindow<TViewModel>, object>, IObservedChange<ReactiveWindow<TViewModel>, object>, IObservedChange<ReactiveWindow<TViewModel>, object>, IObservedChange<ReactiveWindow<TViewModel>, object>, IObservedChange<ReactiveWindow<TViewModel>, object>, IObservedChange<ReactiveWindow<TViewModel>, object>, IObservedChange<ReactiveWindow<TViewModel>, object>, IObservedChange<ReactiveWindow<TViewModel>, object>, IObservedChange<ReactiveWindow<TViewModel>, object>, IObservedChange<ReactiveWindow<TViewModel>, object>, IObservedChange<ReactiveWindow<TViewModel>, object>, TRet>) IObservable<TRet>
WhenAny allows you to observe whenever one or more properties on an object have changed, providing an initial value when the Observable is set up, unlike ObservableForProperty(). Use this method in constructors to set up bindings between properties that also need an initial setup.
WhenAnyDynamic<ReactiveWindow<TViewModel>, TRet>(Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Func<IObservedChange<ReactiveWindow<TViewModel>, object>, IObservedChange<ReactiveWindow<TViewModel>, object>, IObservedChange<ReactiveWindow<TViewModel>, object>, IObservedChange<ReactiveWindow<TViewModel>, object>, IObservedChange<ReactiveWindow<TViewModel>, object>, IObservedChange<ReactiveWindow<TViewModel>, object>, IObservedChange<ReactiveWindow<TViewModel>, object>, IObservedChange<ReactiveWindow<TViewModel>, object>, IObservedChange<ReactiveWindow<TViewModel>, object>, IObservedChange<ReactiveWindow<TViewModel>, object>, IObservedChange<ReactiveWindow<TViewModel>, object>, TRet>) IObservable<TRet>
WhenAny allows you to observe whenever one or more properties on an object have changed, providing an initial value when the Observable is set up, unlike ObservableForProperty(). Use this method in constructors to set up bindings between properties that also need an initial setup.
WhenAnyDynamic<ReactiveWindow<TViewModel>, TRet>(Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Func<IObservedChange<ReactiveWindow<TViewModel>, object>, IObservedChange<ReactiveWindow<TViewModel>, object>, IObservedChange<ReactiveWindow<TViewModel>, object>, IObservedChange<ReactiveWindow<TViewModel>, object>, IObservedChange<ReactiveWindow<TViewModel>, object>, IObservedChange<ReactiveWindow<TViewModel>, object>, IObservedChange<ReactiveWindow<TViewModel>, object>, IObservedChange<ReactiveWindow<TViewModel>, object>, IObservedChange<ReactiveWindow<TViewModel>, object>, IObservedChange<ReactiveWindow<TViewModel>, object>, TRet>) IObservable<TRet>
WhenAny allows you to observe whenever one or more properties on an object have changed, providing an initial value when the Observable is set up, unlike ObservableForProperty(). Use this method in constructors to set up bindings between properties that also need an initial setup.
WhenAnyDynamic<ReactiveWindow<TViewModel>, TRet>(Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Func<IObservedChange<ReactiveWindow<TViewModel>, object>, IObservedChange<ReactiveWindow<TViewModel>, object>, IObservedChange<ReactiveWindow<TViewModel>, object>, IObservedChange<ReactiveWindow<TViewModel>, object>, IObservedChange<ReactiveWindow<TViewModel>, object>, IObservedChange<ReactiveWindow<TViewModel>, object>, IObservedChange<ReactiveWindow<TViewModel>, object>, IObservedChange<ReactiveWindow<TViewModel>, object>, IObservedChange<ReactiveWindow<TViewModel>, object>, TRet>) IObservable<TRet>
WhenAny allows you to observe whenever one or more properties on an object have changed, providing an initial value when the Observable is set up, unlike ObservableForProperty(). Use this method in constructors to set up bindings between properties that also need an initial setup.
WhenAnyDynamic<ReactiveWindow<TViewModel>, TRet>(Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Func<IObservedChange<ReactiveWindow<TViewModel>, object>, IObservedChange<ReactiveWindow<TViewModel>, object>, IObservedChange<ReactiveWindow<TViewModel>, object>, IObservedChange<ReactiveWindow<TViewModel>, object>, IObservedChange<ReactiveWindow<TViewModel>, object>, IObservedChange<ReactiveWindow<TViewModel>, object>, IObservedChange<ReactiveWindow<TViewModel>, object>, IObservedChange<ReactiveWindow<TViewModel>, object>, TRet>) IObservable<TRet>
WhenAny allows you to observe whenever one or more properties on an object have changed, providing an initial value when the Observable is set up, unlike ObservableForProperty(). Use this method in constructors to set up bindings between properties that also need an initial setup.
WhenAnyDynamic<ReactiveWindow<TViewModel>, TRet>(Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Func<IObservedChange<ReactiveWindow<TViewModel>, object>, IObservedChange<ReactiveWindow<TViewModel>, object>, IObservedChange<ReactiveWindow<TViewModel>, object>, IObservedChange<ReactiveWindow<TViewModel>, object>, IObservedChange<ReactiveWindow<TViewModel>, object>, IObservedChange<ReactiveWindow<TViewModel>, object>, IObservedChange<ReactiveWindow<TViewModel>, object>, TRet>) IObservable<TRet>
WhenAny allows you to observe whenever one or more properties on an object have changed, providing an initial value when the Observable is set up, unlike ObservableForProperty(). Use this method in constructors to set up bindings between properties that also need an initial setup.
WhenAnyDynamic<ReactiveWindow<TViewModel>, TRet>(Expression?, Expression?, Expression?, Expression?, Expression?, Expression?, Func<IObservedChange<ReactiveWindow<TViewModel>, object>, IObservedChange<ReactiveWindow<TViewModel>, object>, IObservedChange<ReactiveWindow<TViewModel>, object>, IObservedChange<ReactiveWindow<TViewModel>, object>, IObservedChange<ReactiveWindow<TViewModel>, object>, IObservedChange<ReactiveWindow<TViewModel>, object>, TRet>) IObservable<TRet>
WhenAny allows you to observe whenever one or more properties on an object have changed, providing an initial value when the Observable is set up, unlike ObservableForProperty(). Use this method in constructors to set up bindings between properties that also need an initial setup.
WhenAnyDynamic<ReactiveWindow<TViewModel>, TRet>(Expression?, Expression?, Expression?, Expression?, Expression?, Func<IObservedChange<ReactiveWindow<TViewModel>, object>, IObservedChange<ReactiveWindow<TViewModel>, object>, IObservedChange<ReactiveWindow<TViewModel>, object>, IObservedChange<ReactiveWindow<TViewModel>, object>, IObservedChange<ReactiveWindow<TViewModel>, object>, TRet>) IObservable<TRet>
WhenAny allows you to observe whenever one or more properties on an object have changed, providing an initial value when the Observable is set up, unlike ObservableForProperty(). Use this method in constructors to set up bindings between properties that also need an initial setup.
WhenAnyDynamic<ReactiveWindow<TViewModel>, TRet>(Expression?, Expression?, Expression?, Expression?, Func<IObservedChange<ReactiveWindow<TViewModel>, object>, IObservedChange<ReactiveWindow<TViewModel>, object>, IObservedChange<ReactiveWindow<TViewModel>, object>, IObservedChange<ReactiveWindow<TViewModel>, object>, TRet>) IObservable<TRet>
WhenAny allows you to observe whenever one or more properties on an object have changed, providing an initial value when the Observable is set up, unlike ObservableForProperty(). Use this method in constructors to set up bindings between properties that also need an initial setup.
WhenAnyDynamic<ReactiveWindow<TViewModel>, TRet>(Expression?, Expression?, Expression?, Func<IObservedChange<ReactiveWindow<TViewModel>, object>, IObservedChange<ReactiveWindow<TViewModel>, object>, IObservedChange<ReactiveWindow<TViewModel>, object>, TRet>) IObservable<TRet>
WhenAny allows you to observe whenever one or more properties on an object have changed, providing an initial value when the Observable is set up, unlike ObservableForProperty(). Use this method in constructors to set up bindings between properties that also need an initial setup.
WhenAnyDynamic<ReactiveWindow<TViewModel>, TRet>(Expression?, Expression?, Func<IObservedChange<ReactiveWindow<TViewModel>, object>, IObservedChange<ReactiveWindow<TViewModel>, object>, TRet>) IObservable<TRet>
WhenAny allows you to observe whenever one or more properties on an object have changed, providing an initial value when the Observable is set up, unlike ObservableForProperty(). Use this method in constructors to set up bindings between properties that also need an initial setup.
WhenAnyDynamic<ReactiveWindow<TViewModel>, TRet>(Expression?, Func<IObservedChange<ReactiveWindow<TViewModel>, object>, TRet>) IObservable<TRet>
WhenAny allows you to observe whenever one or more properties on an object have changed, providing an initial value when the Observable is set up, unlike ObservableForProperty(). Use this method in constructors to set up bindings between properties that also need an initial setup.
WhenAnyObservable<ReactiveWindow<TViewModel>, TRet, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12>(Expression<Func<ReactiveWindow<TViewModel>, IObservable<T1>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<T2>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<T3>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<T4>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<T5>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<T6>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<T7>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<T8>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<T9>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<T10>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<T11>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<T12>>>, Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, TRet>) IObservable<TRet>
Monitor a property that is an observable, and subscribe to the most recent emitted value.
WhenAnyObservable<ReactiveWindow<TViewModel>, TRet, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11>(Expression<Func<ReactiveWindow<TViewModel>, IObservable<T1>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<T2>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<T3>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<T4>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<T5>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<T6>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<T7>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<T8>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<T9>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<T10>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<T11>>>, Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, TRet>) IObservable<TRet>
Monitor a property that is an observable, and subscribe to the most recent emitted value.
WhenAnyObservable<ReactiveWindow<TViewModel>, TRet, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>(Expression<Func<ReactiveWindow<TViewModel>, IObservable<T1>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<T2>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<T3>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<T4>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<T5>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<T6>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<T7>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<T8>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<T9>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<T10>>>, Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, TRet>) IObservable<TRet>
Monitor a property that is an observable, and subscribe to the most recent emitted value.
WhenAnyObservable<ReactiveWindow<TViewModel>, TRet, T1, T2, T3, T4, T5, T6, T7, T8, T9>(Expression<Func<ReactiveWindow<TViewModel>, IObservable<T1>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<T2>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<T3>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<T4>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<T5>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<T6>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<T7>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<T8>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<T9>>>, Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, TRet>) IObservable<TRet>
Monitor a property that is an observable, and subscribe to the most recent emitted value.
WhenAnyObservable<ReactiveWindow<TViewModel>, TRet, T1, T2, T3, T4, T5, T6, T7, T8>(Expression<Func<ReactiveWindow<TViewModel>, IObservable<T1>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<T2>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<T3>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<T4>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<T5>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<T6>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<T7>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<T8>>>, Func<T1, T2, T3, T4, T5, T6, T7, T8, TRet>) IObservable<TRet>
Monitor a property that is an observable, and subscribe to the most recent emitted value.
WhenAnyObservable<ReactiveWindow<TViewModel>, TRet, T1, T2, T3, T4, T5, T6, T7>(Expression<Func<ReactiveWindow<TViewModel>, IObservable<T1>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<T2>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<T3>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<T4>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<T5>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<T6>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<T7>>>, Func<T1, T2, T3, T4, T5, T6, T7, TRet>) IObservable<TRet>
Monitor a property that is an observable, and subscribe to the most recent emitted value.
WhenAnyObservable<ReactiveWindow<TViewModel>, TRet, T1, T2, T3, T4, T5, T6>(Expression<Func<ReactiveWindow<TViewModel>, IObservable<T1>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<T2>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<T3>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<T4>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<T5>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<T6>>>, Func<T1, T2, T3, T4, T5, T6, TRet>) IObservable<TRet>
Monitor a property that is an observable, and subscribe to the most recent emitted value.
WhenAnyObservable<ReactiveWindow<TViewModel>, TRet, T1, T2, T3, T4, T5>(Expression<Func<ReactiveWindow<TViewModel>, IObservable<T1>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<T2>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<T3>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<T4>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<T5>>>, Func<T1, T2, T3, T4, T5, TRet>) IObservable<TRet>
Monitor a property that is an observable, and subscribe to the most recent emitted value.
WhenAnyObservable<ReactiveWindow<TViewModel>, TRet, T1, T2, T3, T4>(Expression<Func<ReactiveWindow<TViewModel>, IObservable<T1>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<T2>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<T3>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<T4>>>, Func<T1, T2, T3, T4, TRet>) IObservable<TRet>
Monitor a property that is an observable, and subscribe to the most recent emitted value.
WhenAnyObservable<ReactiveWindow<TViewModel>, TRet, T1, T2, T3>(Expression<Func<ReactiveWindow<TViewModel>, IObservable<T1>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<T2>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<T3>>>, Func<T1, T2, T3, TRet>) IObservable<TRet>
Monitor a property that is an observable, and subscribe to the most recent emitted value.
WhenAnyObservable<ReactiveWindow<TViewModel>, TRet, T1, T2>(Expression<Func<ReactiveWindow<TViewModel>, IObservable<T1>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<T2>>>, Func<T1, T2, TRet>) IObservable<TRet>
Monitor a property that is an observable, and subscribe to the most recent emitted value.
WhenAnyObservable<ReactiveWindow<TViewModel>, TRet>(Expression<Func<ReactiveWindow<TViewModel>, IObservable<TRet>>>) IObservable<TRet>
Observe a observable which is set to a property, and automatically subscribe to the most recent emitted value.
WhenAnyObservable<ReactiveWindow<TViewModel>, TRet>(Expression<Func<ReactiveWindow<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<TRet>>>) IObservable<TRet>
Monitor a property that is an observable, and subscribe to the most recent emitted value.
WhenAnyObservable<ReactiveWindow<TViewModel>, TRet>(Expression<Func<ReactiveWindow<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<TRet>>>) IObservable<TRet>
Monitor a property that is an observable, and subscribe to the most recent emitted value.
WhenAnyObservable<ReactiveWindow<TViewModel>, TRet>(Expression<Func<ReactiveWindow<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<TRet>>>) IObservable<TRet>
Monitor a property that is an observable, and subscribe to the most recent emitted value.
WhenAnyObservable<ReactiveWindow<TViewModel>, TRet>(Expression<Func<ReactiveWindow<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<TRet>>>) IObservable<TRet>
Monitor a property that is an observable, and subscribe to the most recent emitted value.
WhenAnyObservable<ReactiveWindow<TViewModel>, TRet>(Expression<Func<ReactiveWindow<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<TRet>>>) IObservable<TRet>
Monitor a property that is an observable, and subscribe to the most recent emitted value.
WhenAnyObservable<ReactiveWindow<TViewModel>, TRet>(Expression<Func<ReactiveWindow<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<TRet>>>) IObservable<TRet>
Monitor a property that is an observable, and subscribe to the most recent emitted value.
WhenAnyObservable<ReactiveWindow<TViewModel>, TRet>(Expression<Func<ReactiveWindow<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<TRet>>>) IObservable<TRet>
Monitor a property that is an observable, and subscribe to the most recent emitted value.
WhenAnyObservable<ReactiveWindow<TViewModel>, TRet>(Expression<Func<ReactiveWindow<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<TRet>>>) IObservable<TRet>
Monitor a property that is an observable, and subscribe to the most recent emitted value.
WhenAnyObservable<ReactiveWindow<TViewModel>, TRet>(Expression<Func<ReactiveWindow<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<TRet>>>) IObservable<TRet>
Monitor a property that is an observable, and subscribe to the most recent emitted value.
WhenAnyObservable<ReactiveWindow<TViewModel>, TRet>(Expression<Func<ReactiveWindow<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<TRet>>>) IObservable<TRet>
Monitor a property that is an observable, and subscribe to the most recent emitted value.
WhenAnyObservable<ReactiveWindow<TViewModel>, TRet>(Expression<Func<ReactiveWindow<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<TRet>>>, Expression<Func<ReactiveWindow<TViewModel>, IObservable<TRet>>>) IObservable<TRet>
Monitor a property that is an observable, and subscribe to the most recent emitted value.
WhenAnyValue<ReactiveWindow<TViewModel>, T1, T2, T3, T4, T5, T6, T7>(Expression<Func<ReactiveWindow<TViewModel>, T1>>, Expression<Func<ReactiveWindow<TViewModel>, T2>>, Expression<Func<ReactiveWindow<TViewModel>, T3>>, Expression<Func<ReactiveWindow<TViewModel>, T4>>, Expression<Func<ReactiveWindow<TViewModel>, T5>>, Expression<Func<ReactiveWindow<TViewModel>, T6>>, Expression<Func<ReactiveWindow<TViewModel>, T7>>) IObservable<(T1, T2, T3, T4, T5, T6, T7)>
WhenAnyValue allows you to observe whenever the value of one or more properties on an object have changed, providing an initial value when the Observable is set up, unlike ObservableForProperty(). Use this method in constructors to set up bindings between properties that also need an initial setup.
WhenAnyValue<ReactiveWindow<TViewModel>, T1, T2, T3, T4, T5, T6>(Expression<Func<ReactiveWindow<TViewModel>, T1>>, Expression<Func<ReactiveWindow<TViewModel>, T2>>, Expression<Func<ReactiveWindow<TViewModel>, T3>>, Expression<Func<ReactiveWindow<TViewModel>, T4>>, Expression<Func<ReactiveWindow<TViewModel>, T5>>, Expression<Func<ReactiveWindow<TViewModel>, T6>>) IObservable<(T1, T2, T3, T4, T5, T6)>
WhenAnyValue allows you to observe whenever the value of one or more properties on an object have changed, providing an initial value when the Observable is set up, unlike ObservableForProperty(). Use this method in constructors to set up bindings between properties that also need an initial setup.
WhenAnyValue<ReactiveWindow<TViewModel>, T1, T2, T3, T4, T5>(Expression<Func<ReactiveWindow<TViewModel>, T1>>, Expression<Func<ReactiveWindow<TViewModel>, T2>>, Expression<Func<ReactiveWindow<TViewModel>, T3>>, Expression<Func<ReactiveWindow<TViewModel>, T4>>, Expression<Func<ReactiveWindow<TViewModel>, T5>>) IObservable<(T1, T2, T3, T4, T5)>
WhenAnyValue allows you to observe whenever the value of one or more properties on an object have changed, providing an initial value when the Observable is set up, unlike ObservableForProperty(). Use this method in constructors to set up bindings between properties that also need an initial setup.
WhenAnyValue<ReactiveWindow<TViewModel>, T1, T2, T3, T4>(Expression<Func<ReactiveWindow<TViewModel>, T1>>, Expression<Func<ReactiveWindow<TViewModel>, T2>>, Expression<Func<ReactiveWindow<TViewModel>, T3>>, Expression<Func<ReactiveWindow<TViewModel>, T4>>) IObservable<(T1, T2, T3, T4)>
WhenAnyValue allows you to observe whenever the value of one or more properties on an object have changed, providing an initial value when the Observable is set up, unlike ObservableForProperty(). Use this method in constructors to set up bindings between properties that also need an initial setup.
WhenAnyValue<ReactiveWindow<TViewModel>, T1, T2, T3>(Expression<Func<ReactiveWindow<TViewModel>, T1>>, Expression<Func<ReactiveWindow<TViewModel>, T2>>, Expression<Func<ReactiveWindow<TViewModel>, T3>>) IObservable<(T1, T2, T3)>
WhenAnyValue allows you to observe whenever the value of one or more properties on an object have changed, providing an initial value when the Observable is set up, unlike ObservableForProperty(). Use this method in constructors to set up bindings between properties that also need an initial setup.
WhenAnyValue<ReactiveWindow<TViewModel>, T1, T2>(Expression<Func<ReactiveWindow<TViewModel>, T1>>, Expression<Func<ReactiveWindow<TViewModel>, T2>>) IObservable<(T1, T2)>
WhenAnyValue allows you to observe whenever the value of one or more properties on an object have changed, providing an initial value when the Observable is set up, unlike ObservableForProperty(). Use this method in constructors to set up bindings between properties that also need an initial setup.
WhenAnyValue<ReactiveWindow<TViewModel>, TRet, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12>(Expression<Func<ReactiveWindow<TViewModel>, T1>>, Expression<Func<ReactiveWindow<TViewModel>, T2>>, Expression<Func<ReactiveWindow<TViewModel>, T3>>, Expression<Func<ReactiveWindow<TViewModel>, T4>>, Expression<Func<ReactiveWindow<TViewModel>, T5>>, Expression<Func<ReactiveWindow<TViewModel>, T6>>, Expression<Func<ReactiveWindow<TViewModel>, T7>>, Expression<Func<ReactiveWindow<TViewModel>, T8>>, Expression<Func<ReactiveWindow<TViewModel>, T9>>, Expression<Func<ReactiveWindow<TViewModel>, T10>>, Expression<Func<ReactiveWindow<TViewModel>, T11>>, Expression<Func<ReactiveWindow<TViewModel>, T12>>, Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, TRet>) IObservable<TRet>
WhenAnyValue allows you to observe whenever the value of one or more properties on an object have changed, providing an initial value when the Observable is set up, unlike ObservableForProperty(). Use this method in constructors to set up bindings between properties that also need an initial setup.
WhenAnyValue<ReactiveWindow<TViewModel>, TRet, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11>(Expression<Func<ReactiveWindow<TViewModel>, T1>>, Expression<Func<ReactiveWindow<TViewModel>, T2>>, Expression<Func<ReactiveWindow<TViewModel>, T3>>, Expression<Func<ReactiveWindow<TViewModel>, T4>>, Expression<Func<ReactiveWindow<TViewModel>, T5>>, Expression<Func<ReactiveWindow<TViewModel>, T6>>, Expression<Func<ReactiveWindow<TViewModel>, T7>>, Expression<Func<ReactiveWindow<TViewModel>, T8>>, Expression<Func<ReactiveWindow<TViewModel>, T9>>, Expression<Func<ReactiveWindow<TViewModel>, T10>>, Expression<Func<ReactiveWindow<TViewModel>, T11>>, Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, TRet>) IObservable<TRet>
WhenAnyValue allows you to observe whenever the value of one or more properties on an object have changed, providing an initial value when the Observable is set up, unlike ObservableForProperty(). Use this method in constructors to set up bindings between properties that also need an initial setup.
WhenAnyValue<ReactiveWindow<TViewModel>, TRet, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>(Expression<Func<ReactiveWindow<TViewModel>, T1>>, Expression<Func<ReactiveWindow<TViewModel>, T2>>, Expression<Func<ReactiveWindow<TViewModel>, T3>>, Expression<Func<ReactiveWindow<TViewModel>, T4>>, Expression<Func<ReactiveWindow<TViewModel>, T5>>, Expression<Func<ReactiveWindow<TViewModel>, T6>>, Expression<Func<ReactiveWindow<TViewModel>, T7>>, Expression<Func<ReactiveWindow<TViewModel>, T8>>, Expression<Func<ReactiveWindow<TViewModel>, T9>>, Expression<Func<ReactiveWindow<TViewModel>, T10>>, Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, TRet>) IObservable<TRet>
WhenAnyValue allows you to observe whenever the value of one or more properties on an object have changed, providing an initial value when the Observable is set up, unlike ObservableForProperty(). Use this method in constructors to set up bindings between properties that also need an initial setup.
WhenAnyValue<ReactiveWindow<TViewModel>, TRet, T1, T2, T3, T4, T5, T6, T7, T8, T9>(Expression<Func<ReactiveWindow<TViewModel>, T1>>, Expression<Func<ReactiveWindow<TViewModel>, T2>>, Expression<Func<ReactiveWindow<TViewModel>, T3>>, Expression<Func<ReactiveWindow<TViewModel>, T4>>, Expression<Func<ReactiveWindow<TViewModel>, T5>>, Expression<Func<ReactiveWindow<TViewModel>, T6>>, Expression<Func<ReactiveWindow<TViewModel>, T7>>, Expression<Func<ReactiveWindow<TViewModel>, T8>>, Expression<Func<ReactiveWindow<TViewModel>, T9>>, Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, TRet>) IObservable<TRet>
WhenAnyValue allows you to observe whenever the value of one or more properties on an object have changed, providing an initial value when the Observable is set up, unlike ObservableForProperty(). Use this method in constructors to set up bindings between properties that also need an initial setup.
WhenAnyValue<ReactiveWindow<TViewModel>, TRet, T1, T2, T3, T4, T5, T6, T7, T8>(Expression<Func<ReactiveWindow<TViewModel>, T1>>, Expression<Func<ReactiveWindow<TViewModel>, T2>>, Expression<Func<ReactiveWindow<TViewModel>, T3>>, Expression<Func<ReactiveWindow<TViewModel>, T4>>, Expression<Func<ReactiveWindow<TViewModel>, T5>>, Expression<Func<ReactiveWindow<TViewModel>, T6>>, Expression<Func<ReactiveWindow<TViewModel>, T7>>, Expression<Func<ReactiveWindow<TViewModel>, T8>>, Func<T1, T2, T3, T4, T5, T6, T7, T8, TRet>) IObservable<TRet>
WhenAnyValue allows you to observe whenever the value of one or more properties on an object have changed, providing an initial value when the Observable is set up, unlike ObservableForProperty(). Use this method in constructors to set up bindings between properties that also need an initial setup.
WhenAnyValue<ReactiveWindow<TViewModel>, TRet, T1, T2, T3, T4, T5, T6, T7>(Expression<Func<ReactiveWindow<TViewModel>, T1>>, Expression<Func<ReactiveWindow<TViewModel>, T2>>, Expression<Func<ReactiveWindow<TViewModel>, T3>>, Expression<Func<ReactiveWindow<TViewModel>, T4>>, Expression<Func<ReactiveWindow<TViewModel>, T5>>, Expression<Func<ReactiveWindow<TViewModel>, T6>>, Expression<Func<ReactiveWindow<TViewModel>, T7>>, Func<T1, T2, T3, T4, T5, T6, T7, TRet>) IObservable<TRet>
WhenAnyValue allows you to observe whenever the value of one or more properties on an object have changed, providing an initial value when the Observable is set up, unlike ObservableForProperty(). Use this method in constructors to set up bindings between properties that also need an initial setup.
WhenAnyValue<ReactiveWindow<TViewModel>, TRet, T1, T2, T3, T4, T5, T6>(Expression<Func<ReactiveWindow<TViewModel>, T1>>, Expression<Func<ReactiveWindow<TViewModel>, T2>>, Expression<Func<ReactiveWindow<TViewModel>, T3>>, Expression<Func<ReactiveWindow<TViewModel>, T4>>, Expression<Func<ReactiveWindow<TViewModel>, T5>>, Expression<Func<ReactiveWindow<TViewModel>, T6>>, Func<T1, T2, T3, T4, T5, T6, TRet>) IObservable<TRet>
WhenAnyValue allows you to observe whenever the value of one or more properties on an object have changed, providing an initial value when the Observable is set up, unlike ObservableForProperty(). Use this method in constructors to set up bindings between properties that also need an initial setup.
WhenAnyValue<ReactiveWindow<TViewModel>, TRet, T1, T2, T3, T4, T5>(Expression<Func<ReactiveWindow<TViewModel>, T1>>, Expression<Func<ReactiveWindow<TViewModel>, T2>>, Expression<Func<ReactiveWindow<TViewModel>, T3>>, Expression<Func<ReactiveWindow<TViewModel>, T4>>, Expression<Func<ReactiveWindow<TViewModel>, T5>>, Func<T1, T2, T3, T4, T5, TRet>) IObservable<TRet>
WhenAnyValue allows you to observe whenever the value of one or more properties on an object have changed, providing an initial value when the Observable is set up, unlike ObservableForProperty(). Use this method in constructors to set up bindings between properties that also need an initial setup.
WhenAnyValue<ReactiveWindow<TViewModel>, TRet, T1, T2, T3, T4>(Expression<Func<ReactiveWindow<TViewModel>, T1>>, Expression<Func<ReactiveWindow<TViewModel>, T2>>, Expression<Func<ReactiveWindow<TViewModel>, T3>>, Expression<Func<ReactiveWindow<TViewModel>, T4>>, Func<T1, T2, T3, T4, TRet>) IObservable<TRet>
WhenAnyValue allows you to observe whenever the value of one or more properties on an object have changed, providing an initial value when the Observable is set up, unlike ObservableForProperty(). Use this method in constructors to set up bindings between properties that also need an initial setup.
WhenAnyValue<ReactiveWindow<TViewModel>, TRet, T1, T2, T3>(Expression<Func<ReactiveWindow<TViewModel>, T1>>, Expression<Func<ReactiveWindow<TViewModel>, T2>>, Expression<Func<ReactiveWindow<TViewModel>, T3>>, Func<T1, T2, T3, TRet>) IObservable<TRet>
WhenAnyValue allows you to observe whenever the value of one or more properties on an object have changed, providing an initial value when the Observable is set up, unlike ObservableForProperty(). Use this method in constructors to set up bindings between properties that also need an initial setup.
WhenAnyValue<ReactiveWindow<TViewModel>, TRet, T1, T2>(Expression<Func<ReactiveWindow<TViewModel>, T1>>, Expression<Func<ReactiveWindow<TViewModel>, T2>>, Func<T1, T2, TRet>) IObservable<TRet>
WhenAnyValue allows you to observe whenever the value of one or more properties on an object have changed, providing an initial value when the Observable is set up, unlike ObservableForProperty(). Use this method in constructors to set up bindings between properties that also need an initial setup.
WhenAnyValue<ReactiveWindow<TViewModel>, TRet, T1>(Expression<Func<ReactiveWindow<TViewModel>, T1>>, Func<T1, TRet>) IObservable<TRet>
WhenAnyValue allows you to observe whenever the value of one or more properties on an object have changed, providing an initial value when the Observable is set up, unlike ObservableForProperty(). Use this method in constructors to set up bindings between properties that also need an initial setup.
WhenAnyValue<ReactiveWindow<TViewModel>, TRet>(Expression<Func<ReactiveWindow<TViewModel>, TRet>>) IObservable<TRet>
WhenAnyValue allows you to observe whenever the value of a property on an object has changed, providing an initial value when the Observable is set up, unlike ObservableForProperty(). Use this method in constructors to set up bindings between properties that also need an initial setup.
With<ReactiveWindow<TViewModel>, TKey, TField>(Dictionary<TKey, TField>, IDictionary<TKey, TField>) TBuilder
Adds the specified dictionary to the provided dictionary.