Class AbstractUnboundCarouselPanelControlBindingModel<TView, TViewModel, TControl>
- Assembly
- Whipstaff.Wpf.Syncfusion.SfDiagram.dll
A class that contains Viewmodel bindings for the Syncfusion.Windows.Shared.CarouselPanel control.
public abstract class AbstractUnboundCarouselPanelControlBindingModel<TView, TViewModel, TControl> : AbstractUnboundCanvasControlBindingModel<TView, TViewModel, TControl>, IControlBindingModel<TView, TViewModel> where TView : class, IViewFor<TViewModel> where TViewModel : class, IReactiveObject where TControl : CarouselPanel
Type Parameters
TView
TViewModel
TControl
- Inheritance
-
AbstractControlBindingModel<TView, TViewModel, TControl>AbstractUnboundUIElementControlBindingModel<TView, TViewModel, TControl>AbstractUnboundFrameworkElementControlBindingModel<TView, TViewModel, TControl>AbstractUnboundPanelControlBindingModel<TView, TViewModel, TControl>AbstractUnboundCanvasControlBindingModel<TView, TViewModel, TControl>AbstractUnboundCarouselPanelControlBindingModel<TView, TViewModel, TControl>
- Implements
-
IControlBindingModel<TView, TViewModel>
- Derived
- Inherited Members
Constructors
AbstractUnboundCarouselPanelControlBindingModel(Expression<Func<TView, TControl>>)
Initializes a new instance of the AbstractUnboundCarouselPanelControlBindingModel<TView, TViewModel, TControl> class.
protected AbstractUnboundCarouselPanelControlBindingModel(Expression<Func<TView, TControl>> viewExpression)
Parameters
viewExpression
Expression<Func<TView, TControl>>expression representing the control on the view to bind to.
Properties
EnableRotationAnimation
Gets or sets the binding logic for Syncfusion.Windows.Shared.CarouselPanel.EnableRotationAnimation
public IOneOrTwoWayBind<TViewModel, bool>? EnableRotationAnimation { get; init; }
Property Value
- IOneOrTwoWayBind<TViewModel, bool>
OpacityFraction
Gets or sets the binding logic for Syncfusion.Windows.Shared.CarouselPanel.OpacityFraction
public IOneOrTwoWayBind<TViewModel, double>? OpacityFraction { get; init; }
Property Value
- IOneOrTwoWayBind<TViewModel, double>
RadiusX
Gets or sets the binding logic for Syncfusion.Windows.Shared.CarouselPanel.RadiusX
public IOneOrTwoWayBind<TViewModel, double>? RadiusX { get; init; }
Property Value
- IOneOrTwoWayBind<TViewModel, double>
RadiusY
Gets or sets the binding logic for Syncfusion.Windows.Shared.CarouselPanel.RadiusY
public IOneOrTwoWayBind<TViewModel, double>? RadiusY { get; init; }
Property Value
- IOneOrTwoWayBind<TViewModel, double>
RotationSpeed
Gets or sets the binding logic for Syncfusion.Windows.Shared.CarouselPanel.RotationSpeed
public IOneOrTwoWayBind<TViewModel, double>? RotationSpeed { get; init; }
Property Value
- IOneOrTwoWayBind<TViewModel, double>
ScaleFraction
Gets or sets the binding logic for Syncfusion.Windows.Shared.CarouselPanel.ScaleFraction
public IOneOrTwoWayBind<TViewModel, double>? ScaleFraction { get; init; }
Property Value
- IOneOrTwoWayBind<TViewModel, double>
Methods
ApplyBindings(TView, TViewModel, Action<IDisposable>)
Applies the binding between the view and the view model.
public override void ApplyBindings(TView view, TViewModel viewModel, Action<IDisposable> registerForDisposalAction)
Parameters
view
TViewThe view.
viewModel
TViewModelThe viewmodel.
registerForDisposalAction
Action<IDisposable>
ApplyBindings(TView, TViewModel, CompositeDisposable)
Applies the binding between the view and the view model.
public override void ApplyBindings(TView view, TViewModel viewModel, CompositeDisposable compositeDisposable)
Parameters
view
TViewThe view.
viewModel
TViewModelThe viewmodel.
compositeDisposable
CompositeDisposableThe disposable container to register disposals against.