In Windows 8.1, I can do this
<Grid Margin="8"
VerticalAlignment="Bottom"
Tapped="Grid_OnTapped"
Tag="{Binding}"></Grid>
then inside event Grid_OnTapped, I can use the Tag property of Grid to know which item is tapped.
But when change to x:Bind, it's no longer work. Exception throwed: "Object reference is not set to an instance of an object"
Further test, this code will display the name of the class
<TextBlock Text="{x:Bind}/>
But that the only thing work
Please help. Thanks