ClassRadPaginationControl
Represents a control that gives visual means for tracking the current position within a Selector instance.
Definition
Namespace:Telerik.UI.Xaml.Controls.Primitives
Assembly:Telerik.WinUI.Controls.dll
Syntax:
public class RadPaginationControl : RadControl
Inheritance: objectRadControlRadPaginationControl
Inherited Members
Constructors
RadPaginationControl()
Initializes a new instance of the RadPaginationControl class.
Declaration
public RadPaginationControl()
Fields
DisplayModeProperty
Identifies the DisplayMode dependency property.
Declaration
public static readonly DependencyProperty DisplayModeProperty
Field Value
DependencyProperty
LeftArrowTemplateProperty
Identifies the LeftArrowTemplate dependency property.
Declaration
public static readonly DependencyProperty LeftArrowTemplateProperty
Field Value
DependencyProperty
ListItemTemplateProperty
Identifies the ListItemTemplate dependency property.
Declaration
public static readonly DependencyProperty ListItemTemplateProperty
Field Value
DependencyProperty
PageProviderProperty
Identifies the PageProvider dependency property.
Declaration
public static readonly DependencyProperty PageProviderProperty
Field Value
DependencyProperty
RightArrowTemplateProperty
Identifies the RightArrowTemplate dependency property.
Declaration
public static readonly DependencyProperty RightArrowTemplateProperty
Field Value
DependencyProperty
Properties
DisplayMode
Gets or sets a value indication which parts of the control are currently visible.
Declaration
public PaginationControlDisplayMode DisplayMode { get; set; }
Property Value
LeftArrowTemplate
Gets or sets the DataTemplate instance that defines the appearance of the left arrow of the control.
Declaration
public DataTemplate LeftArrowTemplate { get; set; }
Property Value
DataTemplate
ListItemTemplate
Gets or sets the DataTemplate instance that defines the appearance of the items within of the list control.
Declaration
public DataTemplate ListItemTemplate { get; set; }
Property Value
DataTemplate
PageProvider
Gets or sets the current Selector instance targeted by this pagination control.
Declaration
public Selector PageProvider { get; set; }
Property Value
Selector
RightArrowTemplate
Gets or sets the DataTemplate instance that defines the appearance of the right arrow of the control.
Declaration
public DataTemplate RightArrowTemplate { get; set; }
Property Value
DataTemplate
Methods
ApplyTemplateCore()
Called when the Framework OnApplyTemplate is called. Inheritors should override this method should they have some custom template-related logic. This is done to ensure that the property is properly initialized.
OnCreateAutomationPeer()
Declaration
protected override AutomationPeer OnCreateAutomationPeer()
Returns
AutomationPeer
Overrides
OnGotFocus(RoutedEventArgs)
Called before the GotFocus event occurs.
Declaration
protected override void OnGotFocus(RoutedEventArgs e)
Parameters
e
RoutedEventArgs
The data for the event.
OnTemplateApplied()
Occurs when the OnApplyTemplate() method has been called and the template is already successfully applied.
Declaration
protected override void OnTemplateApplied()
Overrides