Class ReactiveEntryCell<TViewModel>
- Namespace
- ReactiveUI.Maui
- Assembly
- ReactiveUI.Maui.dll
This is an EntryCell that is also an IViewFor<T>.
public class ReactiveEntryCell<TViewModel> : EntryCell, INotifyPropertyChanged, IElementController, IEffectControlProvider, IToolTipElement, IContextFlyoutElement, IElement, ICellController, IVisualTreeElement, IEntryCellController, ITextAlignment, IViewFor<TViewModel>, IViewFor, IActivatableView where TViewModel : class
Type Parameters
TViewModel
The type of the view model.
- Inheritance
-
ReactiveEntryCell<TViewModel>
- Implements
-
IViewFor<TViewModel>
- Inherited Members
- Extension Methods
Constructors
ReactiveEntryCell()
public ReactiveEntryCell()
Fields
ViewModelProperty
The view model bindable property.
public static readonly BindableProperty ViewModelProperty
Field Value
Properties
ViewModel
Gets or sets the ViewModel corresponding to this specific View. This should be a DependencyProperty if you're using XAML.
public TViewModel? ViewModel { get; set; }
Property Value
- TViewModel
Methods
OnBindingContextChanged()
Invoked whenever the binding context of the element changes. Implement this method to add class handling for this event.
protected override void OnBindingContextChanged()
Remarks
Implementors must call the base method.