Skip to main content

EditBase.ErrorIconClicked Event

Occurs when a user taps the error icon.

Namespace: DevExpress.Maui.Editors

Assembly: DevExpress.Maui.Editors.dll

NuGet Package: DevExpress.Maui.Editors

Declaration

public event EventHandler ErrorIconClicked

Event Data

The ErrorIconClicked event's data class is EventArgs.

Remarks

Handle the ErrorIconClicked event to set an action that occurs when a user taps the error icon.

You can also use the ErrorIconCommand property.

Example

This example shows how to handle the StartIconClicked event.

Icon Event Example

<dxe:TextEdit x:Name="NameEditor" 
              LabelText="First Name"/>

<dxe:TextEdit x:Name="LoginEditor" 
              LabelText="Login" 
              StartIcon="icon" 
              StartIconClicked="LoginEditor_StartIconClicked"
              HelpText="Tap the icon to use your first name as login"/>
private void LoginEditor_StartIconClicked(object sender, EventArgs e) {
    LoginEditor.Text = NameEditor.Text;
}
See Also