EditBase.StartIconClicked Event
Occurs when a user taps the leading icon.
Namespace: DevExpress.XamarinForms.Editors
Assembly: DevExpress.XamarinForms.Editors.dll
NuGet Package: DevExpress.XamarinForms.Editors
Declaration
public event EventHandler StartIconClicked
Event Data
The StartIconClicked event's data class is EventArgs.
Remarks
Handle the StartIconClicked event to set an action that occurs when a user taps the start icon.
You can also use the StartIconCommand property.
Example
This example shows how to handle the StartIconClicked
event.
<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