Ok, thank you.
One more question, I have created a listview containing a switch with x:Name set to a bindable property of type String "switch" + index(SwitchName).
x:Name="{Binding SwitchName}"
AutomationId="{Binding SwitchName}"
Grid.Row="0"
Grid.Column="1"
AllowIndeterminateState="False"
IsOn="{Binding IsActive}"
StateChanged="SfSwitch_StateChanged">
Is there any way to find which Switch has been triggered, based on SwitchName, from
private void SfSwitch_StateChanged(object sender, EventArgs e)
{
}
Thank you very much for your help