How to identify the target of a click event?
I'm working on a Mashup where the user has a choice of three items (Previous, Current, and Next Order). When the user clicks on the name of the item, the rest of the mashup should get filled in with the details of that item.
What I'm trying to do is: when the user clicks an item, the item's ID gets passed to a service, which returns the details for that item, and then I bind those details to the different UI elements. But it seems like there's no way to identify the "clicked item" from the event - the Clicked event doesn't pass any parameters with it, and there's no way to change which item is bound to the service's input parameter based on which item they clicked.
How can I tie those two things together, so that when the user clicks an item, it both triggers an event and allows me to bind to the item that got clicked?

