Represents the drop indicator visualized in the RadCollectionView during drag and drop.
Definition
Namespace:Telerik.Maui.Controls.CollectionView
Assembly:Telerik.Maui.Controls.dll
Syntax:
C#
public class CollectionViewDropIndicator : GraphicsView, IDrawable
Inheritance: objectCollectionViewDropIndicator
Implements:
Constructors
Initializes a new instance of the CollectionViewDropIndicator class.
C#
public CollectionViewDropIndicator()
Fields
StrokeColorProperty
BindableProperty
Identifies the StrokeColor bindable property.
C#
public static readonly BindableProperty StrokeColorProperty
StrokeThicknessProperty
BindableProperty
Identifies the StrokeThickness bindable property.
C#
public static readonly BindableProperty StrokeThicknessProperty
Properties
StrokeColor
Color
Gets or sets the stroke of the line of the drop indicator.
C#
public Color StrokeColor { get; set; }
Gets or sets the stroke thickness of the drop indicator.
C#
public double StrokeThickness { get; set; }
Methods
Draws the drop indicator.
C#
public void Draw(ICanvas canvas, RectF dirtyRect)
The canvas to draw on.
dirtyRectRectFThe rectangle that needs to be redrawn.