Skip to main content

FormItemBase.ArrowTemplate Property

Gets or sets a template that configures the arrow’s appearance. This is a bindable property.

Namespace: DevExpress.Maui.Editors

Assembly: DevExpress.Maui.Editors.dll

NuGet Package: DevExpress.Maui.Editors

Declaration

public DataTemplate ArrowTemplate { get; set; }

Property Value

Type Description
DataTemplate

A data template that is applied to the arrow.

Example

The following markup shows how to replace the default arrow icon with a custom icon:

DevExpress Form item for MAUI - Arrow template

<dxe:FormItem ...
              ShowArrow="True">
    <dxe:FormItem.ArrowTemplate>
        <DataTemplate>
            <dxco:DXImage Source="rightarrow"
                          WidthRequest="30"
                          HeightRequest="30"
                          TintColor="Coral" />
        </DataTemplate>
    </dxe:FormItem.ArrowTemplate>
</dxe:FormItem>
See Also