3
Прив'язка даних WPF: Як я можу отримати доступ до контексту даних "батьків"?
У мене є список (див. Нижче), що міститься у вікні. Вікно DataContextмає два властивості Itemsта AllowItemCommand. Як отримати прив'язку для властивостей Hyperlink's Commandдля вирішення проти вікна 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 .}"> …