Class CollectionNavigatorBaseCommandProvider
Provides CommandBinding subscription functionality for RadCollectionNavigator.
Inheritance
System.Object
CollectionNavigatorBaseCommandProvider
Assembly: Telerik.Windows.Controls.Data.dll
Syntax
public class CollectionNavigatorBaseCommandProvider : DependencyObject
Constructors
Declaration
public CollectionNavigatorBaseCommandProvider()
Declaration
public CollectionNavigatorBaseCommandProvider(CollectionNavigatorBase collectionNavigator)
Parameters
Fields
Represents the CollectionBaseNavigator DependencyProperty.
Declaration
public static readonly DependencyProperty CollectionNavigatorProperty
Field Value
System.Windows.DependencyProperty
|
Properties
Gets or sets the RadCollectionNavigator instance related to this provider.
Declaration
public CollectionNavigatorBase CollectionNavigator { get; set; }
Property Value
Methods
Represents the logic that is going to be executed in CollectionNavigatorBaseCommandProvider.AddNew execute callback.
Declaration
public virtual void AddNew()
Represents the logic that is going to be executed in CollectionNavigatorBaseCommandProvider.BeginEdit execute callback.
Declaration
public virtual void BeginEdit()
Represents the logic that is going to be executed in CollectionNavigatorBaseCommandProvider.AddNew can-execute callback.
Declaration
public virtual bool CanAddNewExecute()
Returns
Represents the logic that is going to be executed in CollectionNavigatorBaseCommandProvider.AddNew can-execute callback.
Declaration
public virtual bool CanBeginEditExecute()
Returns
Represents the logic that is going to be executed in CollectionNavigatorBaseCommandProvider.Delete can-execute callback.
Declaration
public virtual bool CanDeleteExecute()
Returns
Represents the logic that is going to be executed in CollectionNavigatorBaseCommandProvider.MoveCurrentToFirst can-execute callback.
Declaration
public virtual bool CanMoveCurrentToFirstExecute()
Returns
Represents the logic that is going to be executed in CollectionNavigatorBaseCommandProvider.MoveCurrentToLast can-execute callback.
Declaration
public virtual bool CanMoveCurrentToLastExecute()
Returns
Represents the logic that is going to be executed in CollectionNavigatorBaseCommandProvider.MoveCurrentToNext can-execute callback.
Declaration
public virtual bool CanMoveCurrentToNextExecute()
Returns
Represents the logic that is going to be executed in CollectionNavigatorBaseCommandProvider.MoveCurrentToPrevious can-execute callback.
Declaration
public virtual bool CanMoveCurrentToPreviousExecute()
Returns
Represents the logic that is going to be executed in CollectionNavigatorBaseCommandProvider.Delete execute callback.
Declaration
public virtual void Delete()
Represents the logic that is going to be executed in CollectionNavigatorBaseCommandProvider.MoveCurrentToFirst execute callback.
Declaration
public virtual void MoveCurrentToFirst()
Represents the logic that is going to be executed in CollectionNavigatorBaseCommandProvider.MoveCurrentToLast execute callback.
Declaration
public virtual void MoveCurrentToLast()
Represents the logic that is going to be executed in CollectionNavigatorBaseCommandProvider.MoveCurrentToNext execute callback.
Declaration
public virtual void MoveCurrentToNext()
Represents the logic that is going to be executed in CollectionNavigatorBaseCommandProvider.MoveCurrentToPrevious execute callback.
Declaration
public virtual void MoveCurrentToPrevious()
Extension Methods