Created
June 23, 2013 11:46
-
-
Save damirarh/5844738 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Page.Resources> | |
<b:NameScopeBinding x:Key="ListView" Source="{Binding ElementName=ListView}" /> | |
</Page.Resources> | |
<ListView x:Name="ListView" | |
SelectionMode="Single" | |
IsItemClickEnabled="True" | |
ItemsSource="{Binding Items}"> | |
<i:Interaction.Triggers> | |
<i:EventTrigger EventName="ItemClick"> | |
<i:InvokeCommandAction Command="{Binding ItemClickedCommand}" | |
CommandParameter="{Binding Source.SelectedItem, Source={StaticResource ListView}}" /> | |
</i:EventTrigger> | |
</i:Interaction.Triggers> | |
</ListView> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment