Class AbstractUnboundToolBarTrayAdvControlBindingModel<TView, TViewModel, TControl>
- Assembly
- Whipstaff.Wpf.Syncfusion.SfDiagram.dll
A class that contains Viewmodel bindings for the Syncfusion.Windows.Tools.Controls.ToolBarTrayAdv control.
public abstract class AbstractUnboundToolBarTrayAdvControlBindingModel<TView, TViewModel, TControl> : AbstractUnboundControlControlBindingModel<TView, TViewModel, TControl>, IControlBindingModel<TView, TViewModel> where TView : class, IViewFor<TViewModel> where TViewModel : class, IReactiveObject where TControl : ToolBarTrayAdv
Type Parameters
TView
TViewModel
TControl
- Inheritance
-
AbstractControlBindingModel<TView, TViewModel, TControl>AbstractUnboundUIElementControlBindingModel<TView, TViewModel, TControl>AbstractUnboundFrameworkElementControlBindingModel<TView, TViewModel, TControl>AbstractUnboundControlControlBindingModel<TView, TViewModel, TControl>AbstractUnboundToolBarTrayAdvControlBindingModel<TView, TViewModel, TControl>
- Implements
-
IControlBindingModel<TView, TViewModel>
- Derived
- Inherited Members
Constructors
AbstractUnboundToolBarTrayAdvControlBindingModel(Expression<Func<TView, TControl>>)
Initializes a new instance of the AbstractUnboundToolBarTrayAdvControlBindingModel<TView, TViewModel, TControl> class.
protected AbstractUnboundToolBarTrayAdvControlBindingModel(Expression<Func<TView, TControl>> viewExpression)
Parameters
viewExpression
Expression<Func<TView, TControl>>expression representing the control on the view to bind to.
Properties
IsHostedInToolBarManager
Gets or sets the binding logic for Syncfusion.Windows.Tools.Controls.ToolBarTrayAdv.IsHostedInToolBarManager
public IOneWayBind<TViewModel, bool>? IsHostedInToolBarManager { get; init; }
Property Value
- IOneWayBind<TViewModel, bool>
IsLocked
Gets or sets the binding logic for Syncfusion.Windows.Tools.Controls.ToolBarTrayAdv.IsLocked
public IOneOrTwoWayBind<TViewModel, bool>? IsLocked { get; init; }
Property Value
- IOneOrTwoWayBind<TViewModel, bool>
Orientation
Gets or sets the binding logic for Syncfusion.Windows.Tools.Controls.ToolBarTrayAdv.Orientation
public IOneOrTwoWayBind<TViewModel, Orientation>? Orientation { get; init; }
Property Value
- IOneOrTwoWayBind<TViewModel, Orientation>
ToolBars
Gets or sets the binding logic for Syncfusion.Windows.Tools.Controls.ToolBarTrayAdv.ToolBars
public IOneWayBind<TViewModel, ObservableCollection<ToolBarAdv>>? ToolBars { get; init; }
Property Value
- IOneWayBind<TViewModel, ObservableCollection<ToolBarAdv>>
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.