Class ScrollBarTrackView
Represents the track area of the RadScrollBar control.
Inheritance
Inherited Members
Namespace: Telerik.Maui.Controls.ScrollBar
Assembly: Telerik.Maui.Controls.dll
Syntax
public class ScrollBarTrackView : ScrollBarContentView, IRadContentView, IContentView, IView, IElement, ITransform, IPadding
Constructors
ScrollBarTrackView()
Fields
DecrementCommandProperty
Identifies the DecrementCommand property.
Declaration
public static readonly BindableProperty DecrementCommandProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
IncrementCommandProperty
Identifies the IncrementCommand property.
Declaration
public static readonly BindableProperty IncrementCommandProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
MaximumProperty
Identifies the Maximum property.
Declaration
public static readonly BindableProperty MaximumProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
MinimumProperty
Identifies the Minimum property.
Declaration
public static readonly BindableProperty MinimumProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
ValueProperty
Identifies the Value property.
Declaration
public static readonly BindableProperty ValueProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
ViewportSizeProperty
Identifies the ViewportSize property.
Declaration
public static readonly BindableProperty ViewportSizeProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
Properties
DecrementCommand
Gets or sets a command that decrements the current value.
Declaration
public ICommand DecrementCommand { get; set; }
Property Value
System.Windows.Input.ICommand
|
IncrementCommand
Gets or sets a command that increments the current value.
Declaration
public ICommand IncrementCommand { get; set; }
Property Value
System.Windows.Input.ICommand
|
Maximum
Gets or sets the maximum value of the scroll bar.
Declaration
public double Maximum { get; set; }
Property Value
System.Double
|
Minimum
Gets or sets the minimum value of the scroll bar.
Declaration
public double Minimum { get; set; }
Property Value
System.Double
|
Value
Gets or sets the current value of the scroll bar.
Declaration
public double Value { get; set; }
Property Value
System.Double
|
ViewportSize
Gets or sets the viewport size of the scroll bar.
Declaration
public double ViewportSize { get; set; }
Property Value
System.Double
|
Methods
OnApplyTemplate()
Declaration
protected override void OnApplyTemplate()
Overrides
OnSizeAllocated(Double, Double)
Declaration
protected override void OnSizeAllocated(double width, double height)
Parameters
System.Double
width
|
System.Double
height
|
Events
ValueChanged
Raised when the Value property has changed.
Declaration
public event EventHandler ValueChanged
Event Type
System.EventHandler
|