New to Telerik UI for .NET MAUIStart a free 30-day trial

Provides extension methods and attached properties for Entry controls to support completion commands.

Definition

Namespace:Telerik.Maui.Controls

Assembly:Telerik.Maui.Controls.dll

Syntax:

C#
public static class EntryExtensions

Inheritance: objectEntryExtensions

Fields

CompletedCommandProperty

BindableProperty

Identifies the CompletedCommand attached property.

C#
public static BindableProperty CompletedCommandProperty

Methods

Gets the command that is executed when the entry is completed.

C#
public static ICommand GetCompletedCommand(BindableObject bindable)
Parameters:bindableBindableObject

The bindable object to get the command from.

Returns:

ICommand

The command associated with the entry completion.

Sets the command that is executed when the entry is completed.

C#
public static void SetCompletedCommand(BindableObject bindable, ICommand value)
Parameters:bindableBindableObject

The bindable object to set the command on.

valueICommand

The command to execute when the entry is completed.