Class ReactiveInjectableComponentBase<T>
- Namespace
- ReactiveUI.Blazor
- Assembly
- ReactiveUI.Blazor.dll
A base component for handling property changes and updating the blazer view appropriately.
public class ReactiveInjectableComponentBase<T> : ComponentBase, IComponent, IHandleEvent, IHandleAfterRender, IViewFor<T>, IViewFor, IActivatableView, INotifyPropertyChanged, ICanActivate, IDisposable where T : class, INotifyPropertyChanged
Type Parameters
T
The type of view model. Must support INotifyPropertyChanged.
- Inheritance
-
ReactiveInjectableComponentBase<T>
- Implements
-
IView
For <T>
- Inherited Members
- Extension Methods
Constructors
ReactiveInjectableComponentBase()
Properties
Activated
Gets a observable which is triggered when the ViewModel is activated.
Property Value
- IObservable<Unit>
Deactivated
Gets a observable which is triggered when the ViewModel is deactivated.
Property Value
- IObservable<Unit>
ViewModel
Gets or sets the ViewModel corresponding to this specific View. This should be a DependencyProperty if you're using XAML.
Property Value
- T
Methods
Dispose()
Dispose(bool)
Cleans up the managed resources of the object.
Parameters
disposing
boolIf it is getting called by the Dispose() method rather than a finalizer.
OnAfterRender(bool)
Parameters
firstRender
bool
OnInitialized()
OnPropertyChanged(string?)
Invokes the property changed event.
Parameters
propertyName
stringThe name of the property.