J'ai une liste (voir ci-dessous) contenue dans une fenêtre. La fenêtre DataContext
a deux propriétés, Items
et AllowItemCommand
.
Comment puis-je obtenir la liaison pour les Hyperlink
s » Command
besoins de propriété à résoudre contre la fenêtre de DataContext
?
<ListView ItemsSource="{Binding Items}">
<ListView.View>
<GridView>
<GridViewColumn Header="Action">
<GridViewColumn.CellTemplate>
<DataTemplate>
<StackPanel>
<TextBlock>
<!-- this binding is not working -->
<Hyperlink Command="{Binding AllowItemCommand}"
CommandParameter="{Binding .}">
<TextBlock Text="Allow" />
</Hyperlink>
</TextBlock>
</StackPanel>
</DataTemplate>
</GridViewColumn.CellTemplate>
</GridViewColumn>
</GridView>
</ListView.View>
</ListView>