I have a list of Customers which I use to create Elements like this:
Foreach(Customer c in Customers)
{
//Make the StyledStringElement
//Set the Tapped to action a touch
element.Tapped += () => { Push (new SomeController (c.ClientId)); };
}
The problem is that when the element is tapped it sends the last customer to SomeController().
How can I set the Tapped Delegate with information that will id the customer?