skip navigation
  • Product Bundles

    DevCraft

    All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:

    • AI Coding Assistants
    • Embedded Reporting
    • Document Processing Libraries
    • SSO Account Sign-in

    Web

    Kendo UI UI for Angular UI for Vue UI for jQuery KendoReact UI for Blazor UI for ASP.NET Core UI for ASP.NET MVC UI for ASP.NET AJAX

    Mobile

    UI for .NET MAUI

    Document Management

    Telerik Document Processing

    Desktop

    UI for .NET MAUI UI for WinUI UI for WinForms UI for WPF

    Reporting

    Telerik Reporting Telerik Report Server

    Testing & Mocking

    Test Studio Telerik JustMock

    CMS

    Sitefinity

    AI Productivity Tools

    AI Coding Assistants

    UI/UX Tools

    ThemeBuilder Design System Kit Templates and Building Blocks

    Debugging

    Fiddler Fiddler Everywhere Fiddler Classic Fiddler Everywhere Reporter FiddlerCore

    Free Tools

    KendoReact Free VB.NET to C# Converter Testing Framework
    View all products
  • Overview
  • Demos
    • What's New
    • Release History
  • Support and Learning

    • Support and Learning Hub
    • First Steps
    • Docs
    • Demos
    • Forums
    • Videos
    • Blogs
    • Accessibility
    • Submit a Ticket

    Productivity and Design Tools

    • Visual Studio Extensions
    • Embedded Reporting
  • Pricing
  • Shopping cart
    • Account Overview
    • Your Licenses
    • Downloads
    • Support Center
    • Forum Profile
    • Payment Methods
    • Edit Profile
    • Log out
  • Login
  • Contact Us
  • Try now

Class CollectionNavigatorBase

Inheritance
System.Object
CollectionNavigatorBase
RadCollectionEditor
RadCollectionNavigator
Namespace: Telerik.UI.Xaml.Controls
Assembly: Telerik.WinUI.Controls.dll

Syntax

public abstract class CollectionNavigatorBase : Control

Constructors

CollectionNavigatorBase()

Declaration
protected CollectionNavigatorBase()

Fields

CanAddNewProperty

Declaration
public static readonly DependencyProperty CanAddNewProperty
Field Value
Microsoft.UI.Xaml.DependencyProperty

CanAddNewPropertyKey

Declaration
public static readonly DependencyPropertyKey CanAddNewPropertyKey
Field Value
DependencyPropertyKey

CanDeleteProperty

Declaration
public static readonly DependencyProperty CanDeleteProperty
Field Value
Microsoft.UI.Xaml.DependencyProperty

CanDeletePropertyKey

Declaration
public static readonly DependencyPropertyKey CanDeletePropertyKey
Field Value
DependencyPropertyKey

CanEditProperty

Declaration
public static readonly DependencyProperty CanEditProperty
Field Value
Microsoft.UI.Xaml.DependencyProperty

CanEditPropertyKey

Declaration
public static readonly DependencyPropertyKey CanEditPropertyKey
Field Value
DependencyPropertyKey

CanMoveToFirstItemProperty

Declaration
public static readonly DependencyProperty CanMoveToFirstItemProperty
Field Value
Microsoft.UI.Xaml.DependencyProperty

CanMoveToFirstItemPropertyKey

Declaration
public static readonly DependencyPropertyKey CanMoveToFirstItemPropertyKey
Field Value
DependencyPropertyKey

CanMoveToLastItemProperty

Declaration
public static readonly DependencyProperty CanMoveToLastItemProperty
Field Value
Microsoft.UI.Xaml.DependencyProperty

CanMoveToLastItemPropertyKey

Declaration
public static readonly DependencyPropertyKey CanMoveToLastItemPropertyKey
Field Value
DependencyPropertyKey

CanMoveToNextItemProperty

Declaration
public static readonly DependencyProperty CanMoveToNextItemProperty
Field Value
Microsoft.UI.Xaml.DependencyProperty

CanMoveToNextItemPropertyKey

Declaration
public static readonly DependencyPropertyKey CanMoveToNextItemPropertyKey
Field Value
DependencyPropertyKey

CanMoveToPreviousItemProperty

Declaration
public static readonly DependencyProperty CanMoveToPreviousItemProperty
Field Value
Microsoft.UI.Xaml.DependencyProperty

CanMoveToPreviousItemPropertyKey

Declaration
public static readonly DependencyPropertyKey CanMoveToPreviousItemPropertyKey
Field Value
DependencyPropertyKey

CollectionViewProperty

Declaration
public static readonly DependencyProperty CollectionViewProperty
Field Value
Microsoft.UI.Xaml.DependencyProperty

CollectionViewPropertyKey

Declaration
public static readonly DependencyPropertyKey CollectionViewPropertyKey
Field Value
DependencyPropertyKey

CommandProviderProperty

Declaration
public static readonly DependencyProperty CommandProviderProperty
Field Value
Microsoft.UI.Xaml.DependencyProperty

CurrentIndexProperty

Declaration
public static readonly DependencyProperty CurrentIndexProperty
Field Value
Microsoft.UI.Xaml.DependencyProperty

CurrentItemProperty

Declaration
public static readonly DependencyProperty CurrentItemProperty
Field Value
Microsoft.UI.Xaml.DependencyProperty

ItemCountProperty

Declaration
public static readonly DependencyProperty ItemCountProperty
Field Value
Microsoft.UI.Xaml.DependencyProperty

ItemCountPropertyKey

Declaration
public static readonly DependencyPropertyKey ItemCountPropertyKey
Field Value
DependencyPropertyKey

SourceProperty

Declaration
public static readonly DependencyProperty SourceProperty
Field Value
Microsoft.UI.Xaml.DependencyProperty

Properties

CanAddNew

Declaration
public bool CanAddNew { get; }
Property Value
System.Boolean

CanDelete

Declaration
public bool CanDelete { get; }
Property Value
System.Boolean

CanEdit

Declaration
public bool CanEdit { get; }
Property Value
System.Boolean

CanMoveToFirstItem

Declaration
public bool CanMoveToFirstItem { get; }
Property Value
System.Boolean

CanMoveToLastItem

Declaration
public bool CanMoveToLastItem { get; }
Property Value
System.Boolean

CanMoveToNextItem

Declaration
public bool CanMoveToNextItem { get; }
Property Value
System.Boolean

CanMoveToPreviousItem

Declaration
public bool CanMoveToPreviousItem { get; }
Property Value
System.Boolean

CollectionView

Declaration
public ICollectionView CollectionView { get; }
Property Value
Microsoft.UI.Xaml.Data.ICollectionView

CommandProvider

Declaration
public CollectionNavigatorBaseCommandProvider CommandProvider { get; set; }
Property Value
CollectionNavigatorBaseCommandProvider

CurrentIndex

Declaration
public int CurrentIndex { get; set; }
Property Value
System.Int32

CurrentItem

Declaration
public object CurrentItem { get; set; }
Property Value
System.Object

ItemCount

Declaration
public int ItemCount { get; }
Property Value
System.Int32

Source

Declaration
public IList Source { get; set; }
Property Value
System.Collections.IList

Methods

AddNew()

Declaration
public void AddNew()

BeginEdit()

Declaration
public void BeginEdit()

CanAddNewExecute()

Declaration
public bool CanAddNewExecute()
Returns
System.Boolean

CanBeginEditExecute()

Declaration
public bool CanBeginEditExecute()
Returns
System.Boolean

CanDeleteExecute()

Declaration
public bool CanDeleteExecute()
Returns
System.Boolean

CanMoveCurrentToFirstExecute()

Declaration
public bool CanMoveCurrentToFirstExecute()
Returns
System.Boolean

CanMoveCurrentToLastExecute()

Declaration
public bool CanMoveCurrentToLastExecute()
Returns
System.Boolean

CanMoveCurrentToNextExecute()

Declaration
public bool CanMoveCurrentToNextExecute()
Returns
System.Boolean

CanMoveCurrentToPreviousExecute()

Declaration
public bool CanMoveCurrentToPreviousExecute()
Returns
System.Boolean

Delete()

Declaration
public void Delete()

MoveCurrentToFirst()

Declaration
public void MoveCurrentToFirst()

MoveCurrentToLast()

Declaration
public void MoveCurrentToLast()

MoveCurrentToNext()

Declaration
public void MoveCurrentToNext()

MoveCurrentToPrevious()

Declaration
public void MoveCurrentToPrevious()

Extension Methods

CollectionExtensions.ToEnumerable<T>(T)
Getting Started
  • Install Now
  • Demos
Support Resources
  • Knowledge Base
Community
  • Forums
  • Blogs
  • XAML Feedback Portal
  • Document Processing Feedback Portal

Copyright © 2018 Progress Software Corporation and/or its subsidiaries or affiliates.
All Rights Reserved.

Progress, Telerik, and certain product names used herein are trademarks or registered trademarks of Progress Software Corporation and/or one of its subsidiaries or affiliates in the U.S. and/or other countries. See Trademarks for appropriate markings.