Table of Contents

Class AbstractUnboundPhaseControlBindingModel<TView, TViewModel, TControl>

Namespace
Whipstaff.Wpf.ViewToViewModelBindings.Syncfusion.UI.Xaml.Diagram
Assembly
Whipstaff.Wpf.Syncfusion.SfDiagram.dll

A class that contains Viewmodel bindings for the Syncfusion.UI.Xaml.Diagram.Phase control.

public abstract class AbstractUnboundPhaseControlBindingModel<TView, TViewModel, TControl> : AbstractUnboundControlControlBindingModel<TView, TViewModel, TControl>, IControlBindingModel<TView, TViewModel> where TView : class, IViewFor<TViewModel> where TViewModel : class, IReactiveObject where TControl : Phase

Type Parameters

TView
TViewModel
TControl
Inheritance
AbstractControlBindingModel<TView, TViewModel, TControl>
AbstractUnboundUIElementControlBindingModel<TView, TViewModel, TControl>
AbstractUnboundControlControlBindingModel<TView, TViewModel, TControl>
AbstractUnboundPhaseControlBindingModel<TView, TViewModel, TControl>
Implements
IControlBindingModel<TView, TViewModel>
Derived
Inherited Members

Constructors

AbstractUnboundPhaseControlBindingModel(Expression<Func<TView, TControl>>)

protected AbstractUnboundPhaseControlBindingModel(Expression<Func<TView, TControl>> viewExpression)

Parameters

viewExpression Expression<Func<TView, TControl>>

expression representing the control on the view to bind to.

Properties

BoundingRectangle

Gets or sets the binding logic for Syncfusion.UI.Xaml.Diagram.Phase.BoundingRectangle

public IOneWayBind<TViewModel, Rect> BoundingRectangle { get; init; }

Property Value

IOneWayBind<TViewModel, Rect>

Header

Gets or sets the binding logic for Syncfusion.UI.Xaml.Diagram.Phase.Header

public IOneOrTwoWayBind<TViewModel, object>? Header { get; init; }

Property Value

IOneOrTwoWayBind<TViewModel, object>

ID

Gets or sets the binding logic for Syncfusion.UI.Xaml.Diagram.Phase.ID

public IOneOrTwoWayBind<TViewModel, object>? ID { get; init; }

Property Value

IOneOrTwoWayBind<TViewModel, object>

Info

Gets or sets the binding logic for Syncfusion.UI.Xaml.Diagram.Phase.Info

public IOneOrTwoWayBind<TViewModel, object>? Info { get; init; }

Property Value

IOneOrTwoWayBind<TViewModel, object>

IsSelected

Gets or sets the binding logic for Syncfusion.UI.Xaml.Diagram.Phase.IsSelected

public IOneOrTwoWayBind<TViewModel, bool>? IsSelected { get; init; }

Property Value

IOneOrTwoWayBind<TViewModel, bool>

Key

Gets or sets the binding logic for Syncfusion.UI.Xaml.Diagram.Phase.Key

public IOneOrTwoWayBind<TViewModel, object>? Key { get; init; }

Property Value

IOneOrTwoWayBind<TViewModel, object>

Orientation

Gets or sets the binding logic for Syncfusion.UI.Xaml.Diagram.Phase.Orientation

public IOneOrTwoWayBind<TViewModel, Orientation>? Orientation { get; init; }

Property Value

IOneOrTwoWayBind<TViewModel, Orientation>

SearchTags

Gets or sets the binding logic for Syncfusion.UI.Xaml.Diagram.Phase.SearchTags

public IOneOrTwoWayBind<TViewModel, IEnumerable<string>>? SearchTags { get; init; }

Property Value

IOneOrTwoWayBind<TViewModel, IEnumerable<string>>

ShapeStyle

Gets or sets the binding logic for Syncfusion.UI.Xaml.Diagram.Phase.ShapeStyle

public IOneOrTwoWayBind<TViewModel, Style>? ShapeStyle { get; init; }

Property Value

IOneOrTwoWayBind<TViewModel, Style>

UnitHeight

Gets or sets the binding logic for Syncfusion.UI.Xaml.Diagram.Phase.UnitHeight

public IOneOrTwoWayBind<TViewModel, double>? UnitHeight { get; init; }

Property Value

IOneOrTwoWayBind<TViewModel, double>

UnitWidth

Gets or sets the binding logic for Syncfusion.UI.Xaml.Diagram.Phase.UnitWidth

public IOneOrTwoWayBind<TViewModel, double>? UnitWidth { get; init; }

Property Value

IOneOrTwoWayBind<TViewModel, double>

ZIndex

Gets or sets the binding logic for Syncfusion.UI.Xaml.Diagram.Phase.ZIndex

public IOneOrTwoWayBind<TViewModel, int>? ZIndex { get; init; }

Property Value

IOneOrTwoWayBind<TViewModel, int>

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 TView

The view.

viewModel TViewModel

The 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 TView

The view.

viewModel TViewModel

The viewmodel.

compositeDisposable CompositeDisposable

The disposable container to register disposals against.